Tracking does not make sense for information_schema

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-10-06 20:58:32 +11:00
parent 1411ffaaef
commit dab71427cd
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ phpMyAdmin - ChangeLog
+ issue #11490 UI for defining partitioning in create table window
+ issue #11438 Support JSON data type
+ issue Editing partitions in table Structure
- issue Tracking does not make sense for information_schema
4.5.1.0 (not yet released)
- issue Invalid argument supplied for foreach()

View File

@ -384,7 +384,7 @@ class PMA_Menu
$tabs['operation']['text'] = __('Operations');
}
if (PMA_Tracker::isActive()) {
if (PMA_Tracker::isActive() && ! $db_is_system_schema) {
$tabs['tracking']['icon'] = 'eye.png';
$tabs['tracking']['text'] = __('Tracking');
$tabs['tracking']['link'] = 'tbl_tracking.php';
@ -489,7 +489,7 @@ class PMA_Menu
}
}
if (PMA_Tracker::isActive()) {
if (PMA_Tracker::isActive() && ! $db_is_system_schema) {
$tabs['tracking']['text'] = __('Tracking');
$tabs['tracking']['icon'] = 'eye.png';
$tabs['tracking']['link'] = 'db_tracking.php';