Changeset 46105
- Timestamp:
- 05/16/08 00:54:11 (2 months ago)
- Files:
-
- 1 modified
-
countdown-timer/trunk/afdn_countdownTimer.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
countdown-timer/trunk/afdn_countdownTimer.php
r45534 r46105 4 4 Plugin URI: http://www.andrewferguson.net/wordpress-plugins/countdown-timer/ 5 5 Plugin Description: Add template tags and widget to count down or up to the years, months, weeks, days, hours, minutes, and/or seconds to a particular event. 6 Version: 2. 1.96 Version: 2.2 7 7 Author: Andrew Ferguson 8 8 Author URI: http://www.andrewferguson.net … … 759 759 760 760 update_option("afdn_countdownOptions", $newOptionsArray); //Update the WPDB for the options 761 update_option("fergcorp_countdownTimer_version", "2. 1.9");761 update_option("fergcorp_countdownTimer_version", "2.2"); 762 762 } 763 763 … … 936 936 add_action('wp_head', 'fergcorp_countdownTimer_LoadUserScripts', 1); //Priority needs to be set to 1 so that the scripts can be enqueued before the scripts are printed, since both actions are hooked into the wp_head action. 937 937 938 /** 939 * Loads the appropriate scripts when in the admin page 940 * 941 * @since 2.2 942 * @access private 943 * @author Andrew Ferguson 944 */ 938 945 function fergcorp_countdownTimer_LoadAdminScripts() { 939 946 wp_enqueue_script('postbox'); //These appear to be new functions in WP 2.5 … … 942 949 } 943 950 951 /** 952 * Loads the appropriate scripts 953 * 954 * @since 2.2 955 * @access private 956 * @author Andrew Ferguson 957 */ 944 958 function fergcorp_countdownTimer_LoadUserScripts() { 945 959 $fergcorp_countdownTimer_getOptions = get_option("afdn_countdownOptions");
