Changeset 663885
- Timestamp:
- 02/05/2013 09:02:13 PM (13 years ago)
- Location:
- wp-cycle-plus-captions/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-cycle.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-cycle-plus-captions/trunk/readme.txt
r663864 r663885 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.1 7 Stable tag: 0.3. 17 Stable tag: 0.3.2 8 8 License: GPLv2 or later 9 9 … … 95 95 * Bug Fix 96 96 97 =0.3.2= 98 * Bug Fix 99 97 100 ==WP-Cycle Changelog == 98 101 -
wp-cycle-plus-captions/trunk/wp-cycle.php
r663864 r663885 4 4 Plugin URI: http://www.tech-squawkers.com/wp-cycle-plus-captions/ 5 5 Description: Based on WP-Cycle with modifications by Chris Grab and includes changes by Toby Brommerich to get the caption to display properly with each image. 6 Version: 0.3. 16 Version: 0.3.2 7 7 Author: Toby Brommerich 8 8 Author URI: http://www.tech-squawkers.com/who-is-toby/ … … 245 245 function wp_cycle_images_update_check() { 246 246 global $wp_cycle_images; 247 if(isset( $wp_cycle_images['update'] ) && $wp_cycle_images['update'] == 'Added' || $wp_cycle_images['update'] == 'Deleted' ||$wp_cycle_images['update'] == 'Updated') {247 if(isset( $wp_cycle_images['update'] ) && $wp_cycle_images['update'] == 'Added' || isset( $wp_cycle_images['update'] ) && $wp_cycle_images['update'] == 'Deleted' || isset( $wp_cycle_images['update'] ) && $wp_cycle_images['update'] == 'Updated') { 248 248 echo '<div class="updated fade" id="message"><p>Image(s) '.$wp_cycle_images['update'].' Successfully</p></div>'; 249 249 unset($wp_cycle_images['update']);
Note: See TracChangeset
for help on using the changeset viewer.