Changeset 46105

Show
Ignore:
Timestamp:
05/16/08 00:54:11 (2 months ago)
Author:
fergbrain
Message:

Version 2.2 release

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • countdown-timer/trunk/afdn_countdownTimer.php

    r45534 r46105  
    44Plugin URI: http://www.andrewferguson.net/wordpress-plugins/countdown-timer/ 
    55Plugin 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.9 
     6Version: 2.2 
    77Author: Andrew Ferguson 
    88Author URI: http://www.andrewferguson.net 
     
    759759 
    760760            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"); 
    762762      } 
    763763 
     
    936936      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. 
    937937 
     938      /** 
     939       * Loads the appropriate scripts when in the admin page 
     940       * 
     941       * @since 2.2 
     942       * @access private 
     943       * @author Andrew Ferguson 
     944       */ 
    938945      function fergcorp_countdownTimer_LoadAdminScripts() { 
    939946          wp_enqueue_script('postbox'); //These appear to be new functions in WP 2.5 
     
    942949      } 
    943950       
     951      /** 
     952       * Loads the appropriate scripts 
     953       * 
     954       * @since 2.2 
     955       * @access private 
     956       * @author Andrew Ferguson 
     957       */ 
    944958      function fergcorp_countdownTimer_LoadUserScripts() { 
    945959            $fergcorp_countdownTimer_getOptions = get_option("afdn_countdownOptions");