Changeset 215714
- Timestamp:
- 03/10/2010 01:34:42 PM (16 years ago)
- Location:
- fw-vimeo-videowall
- Files:
-
- 18 added
- 3 edited
-
tags/1.3.1 (added)
-
tags/1.3.1/fw-vimeo-videowall-ajax-handler.php (added)
-
tags/1.3.1/fw-vimeo-videowall-widget.class.php (added)
-
tags/1.3.1/fw-vimeo-videowall.class.php (added)
-
tags/1.3.1/fw-vimeo-videowall.css (added)
-
tags/1.3.1/fw-vimeo-videowall.js (added)
-
tags/1.3.1/fw-vimeo-videowall.php (added)
-
tags/1.3.1/images (added)
-
tags/1.3.1/images/cross.png (added)
-
tags/1.3.1/images/opacity.png (added)
-
tags/1.3.1/jslib (added)
-
tags/1.3.1/jslib/jquery.livequery.js (added)
-
tags/1.3.1/languages (added)
-
tags/1.3.1/languages/fwvvw-fr_FR.mo (added)
-
tags/1.3.1/languages/fwvvw-fr_FR.po (added)
-
tags/1.3.1/readme.txt (added)
-
tags/1.3.1/screenshot-1.png (added)
-
tags/1.3.1/screenshot-2.png (added)
-
trunk/fw-vimeo-videowall-widget.class.php (modified) (3 diffs)
-
trunk/fw-vimeo-videowall.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fw-vimeo-videowall/trunk/fw-vimeo-videowall-widget.class.php
r212590 r215714 32 32 'width' => $instance['width'], 33 33 'height' => $instance['height'], 34 'title' => $instance[' title']);34 'title' => $instance['v_title']); 35 35 36 36 … … 64 64 $instance['width'] = strip_tags( $new_instance['width'] ); 65 65 $instance['height'] = strip_tags( $new_instance['height'] ); 66 $instance[' title'] = strip_tags( $new_instance['title'] );66 $instance['v_title'] = strip_tags( $new_instance['v_title'] ); 67 67 68 68 return $instance; … … 105 105 106 106 <p><?php _e('Display video title under thumbnail (irrelevant if you display a list of video titles)','fwvvw');?><br /> 107 <label><input type="radio" name="<?php echo $this->get_field_name( ' title' ); ?>" value="1" <?php if ( 1 == $instance['title'] ) echo 'checked="checked"'; ?> /><?php _e('Yes','fwvvw');?></label>107 <label><input type="radio" name="<?php echo $this->get_field_name( 'v_title' ); ?>" value="1" <?php if ( 1 == $instance['v_title'] ) echo 'checked="checked"'; ?> /><?php _e('Yes','fwvvw');?></label> 108 108 <br /> 109 <label><input type="radio" name="<?php echo $this->get_field_name( ' title' ); ?>" value="0" <?php if ( 0 == $instance['title'] ) echo 'checked="checked"'; ?> /><?php _e('No','fwvvw');?></label>109 <label><input type="radio" name="<?php echo $this->get_field_name( 'v_title' ); ?>" value="0" <?php if ( 0 == $instance['v_title'] ) echo 'checked="checked"'; ?> /><?php _e('No','fwvvw');?></label> 110 110 </p> 111 111 -
fw-vimeo-videowall/trunk/fw-vimeo-videowall.php
r212590 r215714 8 8 Description: Displays a user, group, album or channel vimeo videowall with thumbnails or small videos in sidebar or content with pagination if needed. 9 9 Author: fairweb 10 Version: 1.3 10 Version: 1.3.1 11 11 Author URI: http://www.fairweb.fr/ 12 12 */ -
fw-vimeo-videowall/trunk/readme.txt
r212590 r215714 59 59 60 60 == Changelog == 61 = 1.3.1 = 62 * Corrected bug : Widget title always displays 1 (reported by Sherman) 61 63 = 1.3 = 62 64 * Corrected bug : display a single video (reported by Jaryd)
Note: See TracChangeset
for help on using the changeset viewer.