Changeset 381299
- Timestamp:
- 05/05/2011 01:28:19 PM (15 years ago)
- Location:
- dynowidg/trunk
- Files:
-
- 4 edited
-
DynoWidg.php (modified) (1 diff)
-
common/inc/form.php (modified) (1 diff)
-
common/inc/widget.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynowidg/trunk/DynoWidg.php
r381074 r381299 4 4 * Plugin URI: http://benjaminsterling.com/wordpress-plugins/dynowidg/ 5 5 * Description: This plugin will allow you to dynamically add any piece of content to the sidebar as well as give you the ability to limit what pages/sections based on Wordpress' conditionals and/or selecting specific areas to limit. 6 * Version: 0.1. 36 * Version: 0.1.4 7 7 * Author: Benjamin Sterling | KenzoMedia 8 8 * Author URI: http://kenzomedia.com -
dynowidg/trunk/common/inc/form.php
r377618 r381299 23 23 type="checkbox" 24 24 value="1" 25 <?php echo ($instance['showheader']== 1) ? ' checked="checked" ':''; ?> />25 <?php echo ($instance['showheader']=='1') ? ' checked="checked" ':''; ?> /> 26 26 </p> 27 27 -
dynowidg/trunk/common/inc/widget.php
r381074 r381299 77 77 78 78 $instance = $old_instance; 79 80 if( empty( $new_instance['showheader'] ) ){ 81 $new_instance['showheader'] = '0'; 82 } 79 83 80 84 $new_instance = wp_parse_args( -
dynowidg/trunk/readme.txt
r381074 r381299 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1.2 7 Stable tag: 0.1. 37 Stable tag: 0.1.4 8 8 9 9 This plugin will allow you to dynamically add any piece of content to the sidebar as well as give you the ability to limit what pages/sections based on Wordpress' conditionals and/or selecting specific areas to limit. … … 42 42 43 43 == Changelog == 44 45 = 0.1.4 = 46 Fixed header title not showing/hiding correctly 47 44 48 = 0.1.3 = 45 49 Fixed class being added not getting appended to the module
Note: See TracChangeset
for help on using the changeset viewer.