Changeset 180

Show
Ignore:
Timestamp:
01/10/05 14:03:52 (3 years ago)
Author:
morganiq
Message:

Corrected load_plugin_textdomaion() domain.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • mini-posts/trunk/mini-posts.php

    r175 r180  
    44Plugin URI: http://doocy.net/mini-posts/ 
    55Description: 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&#945; 
     6Version: 0.2 
    77Author: Morgan Doocy 
    88Author URI: http://doocy.net/ 
     
    3434========= 
    35350.1a   - Initial release. 
     360.2    - Corrected load_plugin_textdomain() domain. 
     37 
    3638*/  
    3739 
     
    136138} else { 
    137139       
    138       load_plugin_textdomain('MiniPost'); 
     140      load_plugin_textdomain('MiniPosts'); 
    139141       
    140142      add_option('filter_mini_posts_from_loop', 1); 
     
    312314      add_action('publish_post', 'mini_update_post'); 
    313315      add_action('admin_menu', 'mini_admin_menu'); 
    314        
    315316} 
    316317?>