Plugin Directory

Changeset 1325067


Ignore:
Timestamp:
01/10/2016 02:31:27 AM (10 years ago)
Author:
primestrategy
Message:

WP SiteManager update to 1.1.8

Location:
wp-sitemanager/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-sitemanager/trunk/modules/theme_switcher.php

    r1189382 r1325067  
    722722    function __construct( $args = array() ) {
    723723        $args = wp_parse_args( $args, array(
    724             'plural' => '',
     724            'plural'   => '',
    725725            'singular' => '',
    726             'ajax' => false
     726            'ajax'     => false,
     727            'screen'   => null,
    727728        ) );
    728729
    729730        $screen = get_current_screen();
     731        $this->screen = $screen;
    730732
    731733        if ( ! $args['plural'] ) {
     
    734736        $this->_args = $args;
    735737        $this->_column_headers = array(
    736             $this->get_columns(),
     738            $this->get_columns( $screen ),
    737739            array(),
    738740            array()
     
    835837    function __construct( $args = array() ) {
    836838        $args = wp_parse_args( $args, array(
    837             'plural' => '',
     839            'plural'   => '',
    838840            'singular' => '',
    839             'ajax' => false
     841            'ajax'     => false,
     842            'screen'   => null,
    840843        ) );
    841844
    842845        $screen = get_current_screen();
     846        $this->screen = $screen;
    843847
    844848        if ( ! $args['plural'] ) {
  • wp-sitemanager/trunk/readme.txt

    r1318368 r1325067  
    22Contributors: primestrategy, jim912, Kengyu Nakamura
    33Tags: cms, mobile, sitemap, pager, page navi, breadcrumb
    4 Requires at least: 3.5
    5 Tested up to: 4.4
    6 Stable tag: 1.1.7
     4Requires at least: 4.2
     5Tested up to: 4.4.1
     6Stable tag: 1.1.8
    77
    88WP SiteManager is an integrated package comprising of necessary functions for using WordPress as a CMS.
     
    3434
    3535== Changelog ==
     36= 1.1.8 =
     37* fix : notice error on the Multi device page.
     38
    3639= 1.1.7 =
    3740* fix : Posts page link displayed on bread crumb when 404 page.
  • wp-sitemanager/trunk/wp-sitemanager.php

    r1318368 r1325067  
    55 Description: WP SiteManager is an integrated package comprising of necessary functions for using WordPress as a CMS.
    66 Author: Prime Strategy Co.,LTD.
    7  Version: 1.1.7
     7 Version: 1.1.8
    88 Author URI: http://www.prime-strategy.co.jp/
    99 License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.