Plugin Directory

Changeset 1042892


Ignore:
Timestamp:
12/11/2014 07:43:53 PM (11 years ago)
Author:
switzer
Message:

missing hook_suffix when generating WP table

Location:
advertising-manager/trunk/lib/Advman/Template/Table
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • advertising-manager/trunk/lib/Advman/Template/Table/Analytics.php

    r1040560 r1042892  
    1313
    1414    function __construct(){
    15         global $status, $page;
     15        global $status, $page, $hook_suffix;
    1616
    1717        parent::__construct( array(
    1818            'singular'  => __( 'ad', 'advman-analytics' ),     //singular name of the listed records
    1919            'plural'    => __( 'ads', 'advman-analytics' ),   //plural name of the listed records
    20             'ajax'      => false        //does this table support ajax?
    21 
     20            'ajax'      => false,        //does this table support ajax?
     21            'screen' => null
    2222        ) );
     23        echo("__construct");
    2324    }
    2425
  • advertising-manager/trunk/lib/Advman/Template/Table/List.php

    r1000862 r1042892  
    1313
    1414    function __construct(){
    15         global $status, $page;
     15        global $status, $page, $hook_suffix;
    1616
    1717        parent::__construct( array(
Note: See TracChangeset for help on using the changeset viewer.