Plugin Directory

Changeset 154494


Ignore:
Timestamp:
09/13/2009 11:22:00 PM (17 years ago)
Author:
plpetitclerc
Message:
 
Location:
wp-prettyphoto
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-prettyphoto/tags/1.5.1/readme.txt

    r153957 r154494  
    44Requires at least: 2.7
    55Tested up to: 2.8.4
    6 Stable tag: 1.5
     6Stable tag: 1.5.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    4848
    4949== ChangeLog ==
     50
     51= Version 1.5.1 =
     52
     53* Fixed a variable type bug that voided allowResize and showTitle from working properly ([Joax](http://010fuss.com/))
     54* Updated documentation
    5055
    5156= Version 1.5 =
  • wp-prettyphoto/tags/1.5.1/wp-prettyphoto.php

    r153955 r154494  
    44Plugin URI: http://blog.fusi0n.org/category/wp-prettyphoto
    55Description: prettyPhoto is a jQuery based lightbox clone. Not only does it support images, it also add support for videos, flash, YouTube, iFrame. It's a full blown media modal box. WP-prettyPhoto embeds those functionalities in WordPress.
    6 Version: 1.5
     6Version: 1.5.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    360360    $wppp_padding       = get_option('wppp_padding');
    361361    $wppp_opacity       = get_option('wppp_opacity');
    362     $wppp_title         = get_option('wppp_title') == 'true'? 'true' : 'false';
    363     $wppp_resize        = get_option('wppp_resize') == 'true'? 'true' : 'false';
     362    $wppp_title         = get_option('wppp_title') == '1'? 'true' : 'false';
     363    $wppp_resize        = get_option('wppp_resize') == '1'? 'true' : 'false';
    364364    $wppp_counterlabel  = get_option('wppp_counterlabel');
    365365    $wppp_theme         = get_option('wppp_theme');
  • wp-prettyphoto/trunk/readme.txt

    r153957 r154494  
    44Requires at least: 2.7
    55Tested up to: 2.8.4
    6 Stable tag: 1.5
     6Stable tag: 1.5.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    4848
    4949== ChangeLog ==
     50
     51= Version 1.5.1 =
     52
     53* Fixed a variable type bug that voided allowResize and showTitle from working properly ([Joax](http://010fuss.com/))
     54* Updated documentation
    5055
    5156= Version 1.5 =
  • wp-prettyphoto/trunk/wp-prettyphoto.php

    r153955 r154494  
    44Plugin URI: http://blog.fusi0n.org/category/wp-prettyphoto
    55Description: prettyPhoto is a jQuery based lightbox clone. Not only does it support images, it also add support for videos, flash, YouTube, iFrame. It's a full blown media modal box. WP-prettyPhoto embeds those functionalities in WordPress.
    6 Version: 1.5
     6Version: 1.5.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    360360    $wppp_padding       = get_option('wppp_padding');
    361361    $wppp_opacity       = get_option('wppp_opacity');
    362     $wppp_title         = get_option('wppp_title') == 'true'? 'true' : 'false';
    363     $wppp_resize        = get_option('wppp_resize') == 'true'? 'true' : 'false';
     362    $wppp_title         = get_option('wppp_title') == '1'? 'true' : 'false';
     363    $wppp_resize        = get_option('wppp_resize') == '1'? 'true' : 'false';
    364364    $wppp_counterlabel  = get_option('wppp_counterlabel');
    365365    $wppp_theme         = get_option('wppp_theme');
Note: See TracChangeset for help on using the changeset viewer.