Plugin Directory

Changeset 1593043


Ignore:
Timestamp:
02/10/2017 05:51:27 AM (9 years ago)
Author:
elevaunt
Message:

Fixed bug when timeout='0' - for reals this time. The last 'fix' made timeout='0' regardless of what was entered.

Location:
versatile-jquery-slider
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • versatile-jquery-slider/tags/1.1.3/readme.txt

    r1589182 r1593043  
    66Requires at least: 3.0.1
    77Tested up to: 4.5.3
    8 Stable tag: 1.1.2
     8Stable tag: 1.1.3
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     
    118118== Changelog ==
    119119
     120= 1.1.3 (2017-02-09): =
     121* Bug fix:
     122  * Fixed bug when timeout='0' - for reals this time.  The last "fix" made timeout='0' regardless of what was entered.
     123
    120124= 1.1.2 (2017-02-04): =
    121125* Bug fixes:
  • versatile-jquery-slider/tags/1.1.3/versatile-jquery-slider.php

    r1589182 r1593043  
    130130
    131131  // 0 timeout fix - needs to be 00 in order to work correctly
    132   if ( $vjs_opts['timeout'] == 0) {
     132  if ( $vjs_opts['timeout'] == '0') {
    133133    $vjs_opts['timeout'] = '00';
    134134  }
  • versatile-jquery-slider/trunk/readme.txt

    r1589182 r1593043  
    66Requires at least: 3.0.1
    77Tested up to: 4.5.3
    8 Stable tag: 1.1.2
     8Stable tag: 1.1.3
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     
    118118== Changelog ==
    119119
     120= 1.1.3 (2017-02-09): =
     121* Bug fix:
     122  * Fixed bug when timeout='0' - for reals this time.  The last "fix" made timeout='0' regardless of what was entered.
     123
    120124= 1.1.2 (2017-02-04): =
    121125* Bug fixes:
  • versatile-jquery-slider/trunk/versatile-jquery-slider.php

    r1589182 r1593043  
    130130
    131131  // 0 timeout fix - needs to be 00 in order to work correctly
    132   if ( $vjs_opts['timeout'] == 0) {
     132  if ( $vjs_opts['timeout'] == '0') {
    133133    $vjs_opts['timeout'] = '00';
    134134  }
Note: See TracChangeset for help on using the changeset viewer.