Changeset 154494
- Timestamp:
- 09/13/2009 11:22:00 PM (17 years ago)
- Location:
- wp-prettyphoto
- Files:
-
- 4 edited
- 1 copied
-
tags/1.5.1 (copied) (copied from wp-prettyphoto/trunk)
-
tags/1.5.1/readme.txt (modified) (2 diffs)
-
tags/1.5.1/wp-prettyphoto.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-prettyphoto.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-prettyphoto/tags/1.5.1/readme.txt
r153957 r154494 4 4 Requires at least: 2.7 5 5 Tested up to: 2.8.4 6 Stable tag: 1.5 6 Stable tag: 1.5.1 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 48 48 49 49 == 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 50 55 51 56 = Version 1.5 = -
wp-prettyphoto/tags/1.5.1/wp-prettyphoto.php
r153955 r154494 4 4 Plugin URI: http://blog.fusi0n.org/category/wp-prettyphoto 5 5 Description: 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 6 Version: 1.5.1 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 360 360 $wppp_padding = get_option('wppp_padding'); 361 361 $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'; 364 364 $wppp_counterlabel = get_option('wppp_counterlabel'); 365 365 $wppp_theme = get_option('wppp_theme'); -
wp-prettyphoto/trunk/readme.txt
r153957 r154494 4 4 Requires at least: 2.7 5 5 Tested up to: 2.8.4 6 Stable tag: 1.5 6 Stable tag: 1.5.1 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 48 48 49 49 == 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 50 55 51 56 = Version 1.5 = -
wp-prettyphoto/trunk/wp-prettyphoto.php
r153955 r154494 4 4 Plugin URI: http://blog.fusi0n.org/category/wp-prettyphoto 5 5 Description: 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 6 Version: 1.5.1 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 360 360 $wppp_padding = get_option('wppp_padding'); 361 361 $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'; 364 364 $wppp_counterlabel = get_option('wppp_counterlabel'); 365 365 $wppp_theme = get_option('wppp_theme');
Note: See TracChangeset
for help on using the changeset viewer.