Changeset 39007
- Timestamp:
- 04/07/08 17:21:30 (3 months ago)
- Files:
-
- acronyms/trunk/acronyms.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
acronyms/trunk/acronyms.php
r38903 r39007 4 4 Plugin URI: http://ketsugi.com/software/wordpress/acronyms-plugin/ 5 5 Description: A plugin to wrap acronyms in posts and comments with appropriate <acronym> acronyms. Allows users to manage lists of acronyms through admin interface. Based on Joel Bennett's Acronym Replacer plugin (http://www.huddledmasses.org/) and Joel Pan's NP_Acronym plugin for Nucleus CMS. 6 Version: 1.5. 16 Version: 1.5.2 7 7 Author: Joel Pan 8 8 Author URI: http://ketsugi.com/ … … 145 145 'SVN' => 'Subversion', 146 146 'TIA' => 'Thanks In Advance', 147 'TIFF' => ' acronymged Image File Format',147 'TIFF' => 'Tagged Image File Format', 148 148 'TLD' => 'Top Level Domain', 149 149 'TOC' => 'Table of Contents', … … 533 533 534 534 add_action( 'admin_init', array( 'Acronyms', 'management_handler' ) ); 535 add_action( 'activate_acronyms.php', array( 'Acronyms', 'install' ) );536 add_action( 'deactivate_acronyms.php', array( 'Acronyms', 'uninstall' ) );535 register_activation_hook(__FILE__, array( 'Acronyms', 'install' ) ); 536 register_deactivation_hook(__FILE__, array( 'Acronyms', 'uninstall' ) ); 537 537 if (1 == get_option( 'acronym_content' ) ) 538 538 add_filter( 'the_content', array( 'Acronyms', 'acronym_replace' ) );
