Plugin Directory

Changeset 477910


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

Legend:

Unmodified
Added
Removed
  • featured-posts-grid/trunk

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

    r477436 r477910  
    44Plugin URI: http://chasepettit.com
    55Description: A javascript based display of post titles and thumbnails in a grid layout.
    6 Version: 1.5
     6Version: 1.6
    77Author: Chaser324
    88Author URI: http://chasepettit.com
     
    4141
    4242// Array of pairs of variable names and default values.
     43global $fpg_variables;
    4344$fpg_variables = array (
    4445    'fpg_rows' => '1',
     
    182183function fpg_activate()
    183184{
     185    global $fpg_variables;
     186
    184187    foreach ($fpg_variables as $var=>$default) {
    185188        $current_value = get_option($var);
     
    213216function fpg_deactivate()
    214217{
     218    global $fpg_variables;
     219
    215220    foreach ($fpg_variables as $var) {
    216221        delete_option($var);
  • featured-posts-grid/trunk/readme.txt

    r477436 r477910  
    77Requires at least: 2.9.1
    88Tested up to: 3.2
    9 Stable tag: 1.5
     9Stable tag: 1.6
    1010
    1111A javascript based display of post titles and thumbnails in a grid layout.
     
    9595== Changelog ==
    9696
     97= 1.6 =
     98* Corrected issue with activation that was causing new variables to not be initialized to default values.
     99
    97100= 1.5 =
    98101* Refactored activate/deactivate functions.
     
    123126== Upgrade Notice ==
    124127
    125 = 1.5 =
    126 * Refactored activate/deactivate functions.
    127 * Reorganized/renamed some CSS and JS files. Removed files that are no longer used.
    128 * Corrected issue where plugin could interfere with post/page templates causing the wrong post data to be displayed.
    129 * Added auto-scroll options.
    130 * Added roll-over option (user can scroll past last page back to first and vice-versa)
    131 * 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.
     128= 1.6 =
     129* Corrected issue with activation that was causing new variables to not be initialized to default values.
    132130
    133131
Note: See TracChangeset for help on using the changeset viewer.