Changeset 477910
- Timestamp:
- 12/20/2011 10:46:27 AM (14 years ago)
- Location:
- featured-posts-grid/trunk
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
featured-posts-grid.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
featured-posts-grid/trunk
- Property svn:mergeinfo changed
/featured-posts-grid/branches/dev merged: 477788
- Property svn:mergeinfo changed
-
featured-posts-grid/trunk/featured-posts-grid.php
r477436 r477910 4 4 Plugin URI: http://chasepettit.com 5 5 Description: A javascript based display of post titles and thumbnails in a grid layout. 6 Version: 1. 56 Version: 1.6 7 7 Author: Chaser324 8 8 Author URI: http://chasepettit.com … … 41 41 42 42 // Array of pairs of variable names and default values. 43 global $fpg_variables; 43 44 $fpg_variables = array ( 44 45 'fpg_rows' => '1', … … 182 183 function fpg_activate() 183 184 { 185 global $fpg_variables; 186 184 187 foreach ($fpg_variables as $var=>$default) { 185 188 $current_value = get_option($var); … … 213 216 function fpg_deactivate() 214 217 { 218 global $fpg_variables; 219 215 220 foreach ($fpg_variables as $var) { 216 221 delete_option($var); -
featured-posts-grid/trunk/readme.txt
r477436 r477910 7 7 Requires at least: 2.9.1 8 8 Tested up to: 3.2 9 Stable tag: 1. 59 Stable tag: 1.6 10 10 11 11 A javascript based display of post titles and thumbnails in a grid layout. … … 95 95 == Changelog == 96 96 97 = 1.6 = 98 * Corrected issue with activation that was causing new variables to not be initialized to default values. 99 97 100 = 1.5 = 98 101 * Refactored activate/deactivate functions. … … 123 126 == Upgrade Notice == 124 127 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. 132 130 133 131
Note: See TracChangeset
for help on using the changeset viewer.