Plugin Directory

Changeset 839235


Ignore:
Timestamp:
01/15/2014 07:55:21 PM (12 years ago)
Author:
slobodanmanic
Message:

v1.2

Location:
sticky-header/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sticky-header/trunk/README.txt

    r828983 r839235  
    44Requires at least: 3.5
    55Tested up to: 3.8.1
    6 Stable tag: 1.1.1
     6Stable tag: 1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 1.2 =
     55* Fixes a PHP notice.
     56
    5457= 1.1 =
    5558* Added Sticky Header max interior width.
  • sticky-header/trunk/class-sticky-header.php

    r828979 r839235  
    177177                color: <?php echo $plugin_settings['text_color']; ?> !important;
    178178            }
    179             <?php if( '' != $plugin_settings['inner_width'] ) : ?>
     179            <?php if ( isset( $plugin_settings['inner_width'] ) ) : ?>
     180            <?php if ( '' != $plugin_settings['inner_width'] ) : ?>
    180181            #thsp-sticky-header-inner {
    181182                max-width: <?php echo $plugin_settings['inner_width']; ?>px;
    182183                margin: 0 auto;
    183184            }
     185            <?php endif; ?>
    184186            <?php endif; ?>
    185187        </style>
  • sticky-header/trunk/sticky-header.php

    r828983 r839235  
    1313 * Plugin URI:      http://thematosoup.com
    1414 * Description:     Adds sticky header to your WordPress website
    15  * Version:         1.1.1
     15 * Version:         1.2
    1616 * Author:          ThematoSoup
    1717 * Author URI:      http://thematosoup.com
Note: See TracChangeset for help on using the changeset viewer.