Plugin Directory

Changeset 1889840


Ignore:
Timestamp:
06/08/2018 05:56:09 PM (7 years ago)
Author:
joelworsham
Message:

v2.0.7

Location:
client-dash/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • client-dash/trunk/client-dash.php

    r1868674 r1889840  
    99 * Plugin Name: Client Dash
    1010 * Description: Creating a more intuitive admin interface for clients.
    11  * Version: 2.0.6
     11 * Version: 2.0.7
    1212 * Author: Real Big Plugins
    1313 * Author URI: https://realbigplugins.com
     
    2424if ( ! class_exists( 'ClientDash' ) ) {
    2525
    26     define( 'CLIENTDASH_VERSION', '2.0.6' );
     26    define( 'CLIENTDASH_VERSION', '2.0.7' );
    2727    define( 'CLIENTDASH_DIR', plugin_dir_path( __FILE__ ) );
    2828    define( 'CLIENTDASH_URI', plugins_url( '', __FILE__ ) );
  • client-dash/trunk/core/class-clientdash-modify.php

    r1807297 r1889840  
    338338        }
    339339
     340        // Edge case where cusotmize admin page could be gone
     341        if ( current_user_can( 'manage_options' ) &&
     342             $new_submenu['clientdash'][0][2] !== site_url( '/?clientdash_customize=1' ) ) {
     343
     344            array_unshift( $new_submenu['clientdash'], array(
     345                __( 'Customize Admin', 'client-dash' ),
     346                'customize_admin',
     347                site_url( '/?clientdash_customize=1' ),
     348            ));
     349        }
     350
    340351        $menu    = $new_menu;
    341352        $submenu = $new_submenu;
  • client-dash/trunk/core/class-clientdash-upgrade.php

    r1807297 r1889840  
    365365                );
    366366
     367                // Skip old Client Dash settings page.
     368                if ( $menu_item['id'] === 'cd_settings' ) {
     369
     370                    continue;
     371                }
     372
    367373                if ( (int) $item->menu_item_parent > 0 ) {
    368374
  • client-dash/trunk/languages/client-dash.pot

    r1827961 r1889840  
    130130msgstr ""
    131131
     132#: core/class-clientdash-modify.php:345, core/customize/class-clientdash-customize.php:667, core/plugin-pages/class-clientdash-pluginpages.php:211
     133msgid "Customize Admin"
     134msgstr ""
     135
    132136#: core/class-clientdash-upgrade.php:118
    133137msgid "Important: If you have made any customizations since updating Client Dash to %s, all customizations will be overwritten by previous Client Dash customizations. It is recommended to backup your website first."
     
    558562msgstr ""
    559563
    560 #. translators: Customize page title
    561 #: core/customize/class-clientdash-customize.php:667, core/plugin-pages/class-clientdash-pluginpages.php:211
    562 msgid "Customize Admin"
    563 msgstr ""
    564 
    565 #: core/customize/class-clientdash-customize.php:1013
     564#: core/customize/class-clientdash-customize.php:1019
    566565msgid "Plugins"
    567566msgstr ""
    568567
    569 #: core/customize/class-clientdash-customize.php:1017, core/helper-pages/views/reports/site.php:113, core/helper-pages/views/reports/site.php:116
     568#: core/customize/class-clientdash-customize.php:1023, core/helper-pages/views/reports/site.php:113, core/helper-pages/views/reports/site.php:116
    570569msgid "Comments"
    571570msgstr ""
    572571
    573 #: core/customize/class-clientdash-customize.php:1051
     572#: core/customize/class-clientdash-customize.php:1057
    574573msgid "Updates"
    575574msgstr ""
    576575
    577 #: core/customize/class-clientdash-customize.php:1094
     576#: core/customize/class-clientdash-customize.php:1100
    578577msgid "Quick Draft"
    579578msgstr ""
  • client-dash/trunk/readme.txt

    r1868674 r1889840  
    55Requires at least: 4.7.0
    66Tested up to: 4.9.5
    7 Stable tag: 2.0.6
     7Stable tag: 2.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8888
    8989== Changelog ==
     90
     91= 2.0.7 =
     92* Ensure Client Dash Customize Tool is accessible.
    9093
    9194= 2.0.6 =
Note: See TracChangeset for help on using the changeset viewer.