Changeset 477914
- Timestamp:
- 12/20/2011 10:48:20 AM (14 years ago)
- Location:
- featured-posts-scroll/trunk
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
featured-posts-scroll.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
featured-posts-scroll/trunk
- Property svn:mergeinfo changed
/featured-posts-scroll/branches/varsize merged: 477787
- Property svn:mergeinfo changed
-
featured-posts-scroll/trunk/featured-posts-scroll.php
r477439 r477914 4 4 Plugin URI: http://chasepettit.com 5 5 Description: A basic javascript based scrolling display of post titles and thumbnails. 6 Version: 1.2 36 Version: 1.24 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 $fps_variables; 43 44 $fps_variables = array ( 44 45 'fps_max_posts' => '5', … … 143 144 function fps_activate() 144 145 { 146 global $fps_variables; 147 145 148 foreach ($fps_variables as $var=>$default) { 146 149 $current_value = get_option($var); … … 176 179 function fps_deactivate() 177 180 { 181 global $fps_variables; 182 178 183 foreach ($fps_variables as $var) { 179 184 delete_option($var); -
featured-posts-scroll/trunk/readme.txt
r477439 r477914 7 7 Requires at least: 2.9.1 8 8 Tested up to: 3.2 9 Stable tag: 1.2 39 Stable tag: 1.24 10 10 11 11 A basic javascript based scrolling display of post titles and thumbnails. … … 96 96 97 97 == Changelog == 98 99 = 1.24 = 100 * Corrected issue with activation that was causing new variables to not be initialized to default values. 98 101 99 102 = 1.23 = … … 190 193 == Upgrade Notice == 191 194 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.