Plugin Directory

Changeset 725797


Ignore:
Timestamp:
06/12/2013 05:39:47 PM (13 years ago)
Author:
Code96
Message:

Updated errors with PHP 5.4

Location:
genesis-easy-columns/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • genesis-easy-columns/trunk/genesis-columns.php

    r717037 r725797  
    44Plugin URI: http://www.code96wd.com/wordpress-plugins/
    55Description: Easily add Genesis column shortcodes to your WordPress editor.
    6 Version: 1.1
     6Version: 1.1.1
    77Author: Matthew Smith
    88Author URI: http://www.code96wd.com
  • genesis-easy-columns/trunk/includes/functions.php

    r702608 r725797  
    4848        //$disable = of_get_option('disable_stylesheet');
    4949        //echo $gc_options['enabled'];
    50         if ($gc_options['enabled'] == true)
     50        if (isset($gc_options['enabled']) && ($gc_options['enabled'] == true))
    5151        {
    5252            add_action('wp_enqueue_scripts', 'gc_optional_css');
  • genesis-easy-columns/trunk/includes/gc-settings.php

    r702613 r725797  
    2424                    <tr>
    2525                        <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'])); ?> />
    2727                    </tr>
    2828                    <tr>
  • genesis-easy-columns/trunk/readme.txt

    r702618 r725797  
    66Requires at least: 3.2
    77Tested up to: 3.5.1
    8 Stable tag: 1.1
     8Stable tag: 1.1.1
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.