Plugin Directory

Changeset 477914


Ignore:
Timestamp:
12/20/2011 10:48:20 AM (14 years ago)
Author:
Chaser324
Message:
 
Location:
featured-posts-scroll/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • featured-posts-scroll/trunk

  • featured-posts-scroll/trunk/featured-posts-scroll.php

    r477439 r477914  
    44Plugin URI: http://chasepettit.com
    55Description: A basic javascript based scrolling display of post titles and thumbnails.
    6 Version: 1.23
     6Version: 1.24
    77Author: Chaser324
    88Author URI: http://chasepettit.com
     
    4141
    4242// Array of pairs of variable names and default values.
     43global $fps_variables;
    4344$fps_variables = array (
    4445    'fps_max_posts' => '5',
     
    143144function fps_activate()
    144145{
     146    global $fps_variables;
     147
    145148    foreach ($fps_variables as $var=>$default) {
    146149        $current_value = get_option($var);
     
    176179function fps_deactivate()
    177180{
     181    global $fps_variables;
     182
    178183    foreach ($fps_variables as $var) {
    179184        delete_option($var);
  • featured-posts-scroll/trunk/readme.txt

    r477439 r477914  
    77Requires at least: 2.9.1
    88Tested up to: 3.2
    9 Stable tag: 1.23
     9Stable tag: 1.24
    1010
    1111A basic javascript based scrolling display of post titles and thumbnails.
     
    9696
    9797== Changelog ==
     98
     99= 1.24 =
     100* Corrected issue with activation that was causing new variables to not be initialized to default values.
    98101
    99102= 1.23 =
     
    190193== Upgrade Notice ==
    191194
    192 = 1.23 =
    193 * Reorganized/renamed some CSS and JS files. Removed files that are no longer used.
    194 * Corrected issue where plugin could interfere with post/page templates causing the wrong post data to be displayed.
    195 * Code refactoring and cleanup: activate/deactivate functions, admin page, js files.
    196 * Performance update. CSS and JS that were generated from PHP on every page view are now saved to static files every time an admin option is changed.
    197 * Removed !is_paged() check that prevented plugin from displaying on multiple pages of a list. To replicate old behavior, add if (!is_paged()){...} around the fps_show() call.
     195= 1.24 =
     196* Corrected issue with activation that was causing new variables to not be initialized to default values.
Note: See TracChangeset for help on using the changeset viewer.