Changeset 725797
- Timestamp:
- 06/12/2013 05:39:47 PM (13 years ago)
- Location:
- genesis-easy-columns/trunk
- Files:
-
- 4 edited
-
genesis-columns.php (modified) (1 diff)
-
includes/functions.php (modified) (1 diff)
-
includes/gc-settings.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
genesis-easy-columns/trunk/genesis-columns.php
r717037 r725797 4 4 Plugin URI: http://www.code96wd.com/wordpress-plugins/ 5 5 Description: Easily add Genesis column shortcodes to your WordPress editor. 6 Version: 1.1 6 Version: 1.1.1 7 7 Author: Matthew Smith 8 8 Author URI: http://www.code96wd.com -
genesis-easy-columns/trunk/includes/functions.php
r702608 r725797 48 48 //$disable = of_get_option('disable_stylesheet'); 49 49 //echo $gc_options['enabled']; 50 if ( $gc_options['enabled'] == true)50 if (isset($gc_options['enabled']) && ($gc_options['enabled'] == true)) 51 51 { 52 52 add_action('wp_enqueue_scripts', 'gc_optional_css'); -
genesis-easy-columns/trunk/includes/gc-settings.php
r702613 r725797 24 24 <tr> 25 25 <td style="padding:15px;"><label class="description" for="gc_settings[enabled]">Enable Optional CSS: </label></td> 26 <td style="padding:15px;"><input id="gc_settings[enabled]" name="gc_settings[enabled]" type="checkbox" value="1" <?php checked(1, $gc_options['enabled']); ?> />26 <td style="padding:15px;"><input id="gc_settings[enabled]" name="gc_settings[enabled]" type="checkbox" value="1" <?php checked(1, isset($gc_options['enabled'])); ?> /> 27 27 </tr> 28 28 <tr> -
genesis-easy-columns/trunk/readme.txt
r702618 r725797 6 6 Requires at least: 3.2 7 7 Tested up to: 3.5.1 8 Stable tag: 1.1 8 Stable tag: 1.1.1 9 9 License: GPLv2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.