Changeset 180
- Timestamp:
- 01/10/05 14:03:52 (3 years ago)
- Files:
-
- mini-posts/trunk/mini-posts.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
mini-posts/trunk/mini-posts.php
r175 r180 4 4 Plugin URI: http://doocy.net/mini-posts/ 5 5 Description: An approach to "asides", or small posts. Allows you to mark entries as "mini" posts and handle them differently than normal posts. <strong>Requires WordPress 1.5.</strong> 6 Version: 0. 1α6 Version: 0.2 7 7 Author: Morgan Doocy 8 8 Author URI: http://doocy.net/ … … 34 34 ========= 35 35 0.1a - Initial release. 36 0.2 - Corrected load_plugin_textdomain() domain. 37 36 38 */ 37 39 … … 136 138 } else { 137 139 138 load_plugin_textdomain('MiniPost ');140 load_plugin_textdomain('MiniPosts'); 139 141 140 142 add_option('filter_mini_posts_from_loop', 1); … … 312 314 add_action('publish_post', 'mini_update_post'); 313 315 add_action('admin_menu', 'mini_admin_menu'); 314 315 316 } 316 317 ?>
