Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-08-02 20:57:24 +0400
committerRouslan Placella <rouslan@placella.com>2012-08-02 20:57:24 +0400
commitba7a49e81c38a0d403553190a116c9fc5804013a (patch)
tree2d0e0c6ef4da5bacad82c93b22627806cb34cefd /libraries/Menu.class.php
parent248321118e70b5906f78d9b559c46f6fe77510da (diff)
Fixed order of tabs in the top menu for empty databases
Diffstat (limited to 'libraries/Menu.class.php')
-rw-r--r--libraries/Menu.class.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/libraries/Menu.class.php b/libraries/Menu.class.php
index adbc5081fa..6c694bc256 100644
--- a/libraries/Menu.class.php
+++ b/libraries/Menu.class.php
@@ -36,13 +36,13 @@ class PMA_Menu
* @access private
* @var string
*/
- private $_table;
-
+ private $_table;
+
private $_common_functions;
-
+
/**
* Get CommmonFunctions
- *
+ *
* @return CommonFunctions object
*/
public function getCommonFunctions()
@@ -351,15 +351,6 @@ class PMA_Menu
$tabs = array();
- /**
- * export, search and qbe links if there is at least one table
- */
- if ($num_tables == 0) {
- $tabs['qbe']['warning'] = __('Database seems to be empty!');
- $tabs['search']['warning'] = __('Database seems to be empty!');
- $tabs['export']['warning'] = __('Database seems to be empty!');
- }
-
$tabs['structure']['link'] = 'db_structure.php';
$tabs['structure']['text'] = __('Structure');
$tabs['structure']['icon'] = 'b_props.png';
@@ -372,14 +363,23 @@ class PMA_Menu
$tabs['search']['text'] = __('Search');
$tabs['search']['icon'] = 'b_search.png';
$tabs['search']['link'] = 'db_search.php';
+ if ($num_tables == 0) {
+ $tabs['search']['warning'] = __('Database seems to be empty!');
+ }
$tabs['qbe']['text'] = __('Query');
$tabs['qbe']['icon'] = 's_db.png';
$tabs['qbe']['link'] = 'db_qbe.php';
+ if ($num_tables == 0) {
+ $tabs['qbe']['warning'] = __('Database seems to be empty!');
+ }
$tabs['export']['text'] = __('Export');
$tabs['export']['icon'] = 'b_export.png';
$tabs['export']['link'] = 'db_export.php';
+ if ($num_tables == 0) {
+ $tabs['export']['warning'] = __('Database seems to be empty!');
+ }
if (! $db_is_information_schema) {
$tabs['import']['link'] = 'db_import.php';