Tracking does not make sense for information_schema
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
parent
1411ffaaef
commit
dab71427cd
@ -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()
|
||||
|
||||
@ -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';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user