Changeset 1889840
- Timestamp:
- 06/08/2018 05:56:09 PM (7 years ago)
- Location:
- client-dash/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
client-dash/trunk/client-dash.php
r1868674 r1889840 9 9 * Plugin Name: Client Dash 10 10 * Description: Creating a more intuitive admin interface for clients. 11 * Version: 2.0. 611 * Version: 2.0.7 12 12 * Author: Real Big Plugins 13 13 * Author URI: https://realbigplugins.com … … 24 24 if ( ! class_exists( 'ClientDash' ) ) { 25 25 26 define( 'CLIENTDASH_VERSION', '2.0. 6' );26 define( 'CLIENTDASH_VERSION', '2.0.7' ); 27 27 define( 'CLIENTDASH_DIR', plugin_dir_path( __FILE__ ) ); 28 28 define( 'CLIENTDASH_URI', plugins_url( '', __FILE__ ) ); -
client-dash/trunk/core/class-clientdash-modify.php
r1807297 r1889840 338 338 } 339 339 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 340 351 $menu = $new_menu; 341 352 $submenu = $new_submenu; -
client-dash/trunk/core/class-clientdash-upgrade.php
r1807297 r1889840 365 365 ); 366 366 367 // Skip old Client Dash settings page. 368 if ( $menu_item['id'] === 'cd_settings' ) { 369 370 continue; 371 } 372 367 373 if ( (int) $item->menu_item_parent > 0 ) { 368 374 -
client-dash/trunk/languages/client-dash.pot
r1827961 r1889840 130 130 msgstr "" 131 131 132 #: core/class-clientdash-modify.php:345, core/customize/class-clientdash-customize.php:667, core/plugin-pages/class-clientdash-pluginpages.php:211 133 msgid "Customize Admin" 134 msgstr "" 135 132 136 #: core/class-clientdash-upgrade.php:118 133 137 msgid "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." … … 558 562 msgstr "" 559 563 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 566 565 msgid "Plugins" 567 566 msgstr "" 568 567 569 #: core/customize/class-clientdash-customize.php:10 17, core/helper-pages/views/reports/site.php:113, core/helper-pages/views/reports/site.php:116568 #: core/customize/class-clientdash-customize.php:1023, core/helper-pages/views/reports/site.php:113, core/helper-pages/views/reports/site.php:116 570 569 msgid "Comments" 571 570 msgstr "" 572 571 573 #: core/customize/class-clientdash-customize.php:105 1572 #: core/customize/class-clientdash-customize.php:1057 574 573 msgid "Updates" 575 574 msgstr "" 576 575 577 #: core/customize/class-clientdash-customize.php:1 094576 #: core/customize/class-clientdash-customize.php:1100 578 577 msgid "Quick Draft" 579 578 msgstr "" -
client-dash/trunk/readme.txt
r1868674 r1889840 5 5 Requires at least: 4.7.0 6 6 Tested up to: 4.9.5 7 Stable tag: 2.0. 67 Stable tag: 2.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 88 88 89 89 == Changelog == 90 91 = 2.0.7 = 92 * Ensure Client Dash Customize Tool is accessible. 90 93 91 94 = 2.0.6 =
Note: See TracChangeset
for help on using the changeset viewer.