Plugin Directory

Changeset 663885


Ignore:
Timestamp:
02/05/2013 09:02:13 PM (13 years ago)
Author:
Tech-Squawkers
Message:

Bug Fix

Location:
wp-cycle-plus-captions/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-cycle-plus-captions/trunk/readme.txt

    r663864 r663885  
    55Requires at least: 3.0
    66Tested up to: 3.4.1
    7 Stable tag: 0.3.1
     7Stable tag: 0.3.2
    88License: GPLv2 or later
    99
     
    9595* Bug Fix
    9696
     97=0.3.2=
     98* Bug Fix
     99
    97100==WP-Cycle Changelog ==
    98101
  • wp-cycle-plus-captions/trunk/wp-cycle.php

    r663864 r663885  
    44Plugin URI: http://www.tech-squawkers.com/wp-cycle-plus-captions/
    55Description: 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.1
     6Version: 0.3.2
    77Author: Toby Brommerich
    88Author URI: http://www.tech-squawkers.com/who-is-toby/
     
    245245function wp_cycle_images_update_check() {
    246246    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') {
    248248        echo '<div class="updated fade" id="message"><p>Image(s) '.$wp_cycle_images['update'].' Successfully</p></div>';
    249249        unset($wp_cycle_images['update']);
Note: See TracChangeset for help on using the changeset viewer.