Plugin Directory

Changeset 937087


Ignore:
Timestamp:
06/23/2014 11:47:03 AM (12 years ago)
Author:
slobodanmanic
Message:

v1.0.1 - fixes a PHP notice in admin

Location:
tha-hooks-interface
Files:
18 added
2 edited

Legend:

Unmodified
Added
Removed
  • tha-hooks-interface/trunk/README.txt

    r804256 r937087  
    44Requires at least: 3.5
    55Tested up to: 3.7.1
    6 Stable tag: 1.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858== Changelog ==
    5959
     60= 1.0.1 =
     61* Fixes an undefined index notice in class-tha-hooks-interface-admin.php
     62
    6063= 1.0 =
    6164* The first version of the plugin.
  • tha-hooks-interface/trunk/admin/class-tha-hooks-interface-admin.php

    r804256 r937087  
    205205
    206206        global $pagenow;
    207         $page_filter = $_GET['page'];
     207        $page_filter = ( isset( $_GET['page'] ) ? $_GET['page'] : false );
     208
    208209        // Don't do anything if not THA Interface settings page
    209210        if ( isset( $page_filter ) ) :
Note: See TracChangeset for help on using the changeset viewer.