Changeset 392551
- Timestamp:
- 06/02/2011 10:45:38 PM (15 years ago)
- Location:
- google-1-widget/trunk
- Files:
-
- 4 edited
-
index.html (modified) (1 diff)
-
plusone.html (modified) (1 diff)
-
plusone.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
google-1-widget/trunk/index.html
r392541 r392551 9 9 <h1>Google +1 WordPress Widget <g:plusone></g:plusone></h1> 10 10 <p>Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog.</p> 11 <h4>Version 1. 1.1</h4>11 <h4>Version 1.2.0</h4> 12 12 <p>You can set the title, alignment, size and background of the +1 button. Simply install the plugin and place the widget.</p> 13 13 -
google-1-widget/trunk/plusone.html
r392541 r392551 9 9 <h1>Google +1 WordPress Widget <g:plusone></g:plusone></h1> 10 10 <p>Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog.</p> 11 <h4>Version 1. 1.1</h4>11 <h4>Version 1.2.0</h4> 12 12 <p>You can set the title, alignment, size and background of the +1 button. Simply install the plugin and place the widget.</p> 13 13 -
google-1-widget/trunk/plusone.php
r392538 r392551 4 4 Plugin URI: http://www.yatko.com/dev/widgets/wordpress/googleplusone/ 5 5 Description: Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog. You can set the title, alignment, size and background of the +1 button. Simply install the plugin and place the widget. Visit http://www.yatko.com/dev/widgets/wordpress/googleplusone/ 6 Version: 1. 1.16 Version: 1.2.0 7 7 Author: Yatko 8 8 Author URI: http://www.yatko.com … … 122 122 <label for="<?php echo $this->get_field_id( 'plusone_Size' ); ?>"><?php _e('+1 Size:', 'standard'); ?></label> 123 123 <select id="<?php echo $this->get_field_id( 'plusone_Size' ); ?>" name="<?php echo $this->get_field_name( 'plusone_Size' ); ?>" class="plusOneSelect" style="width:100%;"> 124 <option <?php if ( 'small' == $instance[' format'] ) echo 'selected="selected"'; ?>>small</option>125 <option <?php if ( 'medium' == $instance[' format'] ) echo 'selected="selected"'; ?>>medium</option>126 <option <?php if ( 'standard' == $instance[' format'] ) echo 'selected="selected"'; ?>>standard</option>127 <option <?php if ( 'tall' == $instance[' format'] ) echo 'selected="selected"'; ?>>tall</option>124 <option <?php if ( 'small' == $instance['plusone_Size'] ) echo 'selected="selected"'; ?>>small</option> 125 <option <?php if ( 'medium' == $instance['plusone_Size'] ) echo 'selected="selected"'; ?>>medium</option> 126 <option <?php if ( 'standard' == $instance['plusone_Size'] ) echo 'selected="selected"'; ?>>standard</option> 127 <option <?php if ( 'tall' == $instance['plusone_Size'] ) echo 'selected="selected"'; ?>>tall</option> 128 128 </select> 129 129 </p> … … 133 133 <label for="<?php echo $this->get_field_id( 'plusone_Align' ); ?>"><?php _e('Align:', 'center'); ?></label> 134 134 <select id="<?php echo $this->get_field_id( 'plusone_Align' ); ?>" name="<?php echo $this->get_field_name( 'plusone_Align' ); ?>" class="plusOneSelect" style="width:100%;"> 135 <option <?php if ( 'center' == $instance[' format'] ) echo 'selected="selected"'; ?>>center</option>136 <option <?php if ( 'left' == $instance[' format'] ) echo 'selected="selected"'; ?>>left</option>137 <option <?php if ( 'right' == $instance[' format'] ) echo 'selected="selected"'; ?>>right</option>135 <option <?php if ( 'center' == $instance['plusone_Align'] ) echo 'selected="selected"'; ?>>center</option> 136 <option <?php if ( 'left' == $instance['plusone_Align'] ) echo 'selected="selected"'; ?>>left</option> 137 <option <?php if ( 'right' == $instance['plusone_Align'] ) echo 'selected="selected"'; ?>>right</option> 138 138 </select> 139 139 </p> -
google-1-widget/trunk/readme.txt
r392538 r392551 5 5 Requires at least: 2.0.2 6 6 Tested up to: 3.1.3 7 Stable tag: 1. 1.17 Stable tag: 1.2.0 8 8 9 9 Google +1 WordPress widget adds a configurable Google +1 Button to your WordPress blog … … 28 28 29 29 == Changelog == 30 = 1.2.0 = 31 * fixed: +1 button size selector reset to small 32 * fixed: +1 button align selector reset to center 33 30 34 = 1.1.1 = 31 35 * fixed: standard +1 button missing
Note: See TracChangeset
for help on using the changeset viewer.