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:
-rw-r--r--config.sample.inc.php2
-rw-r--r--doc/config.rst8
-rw-r--r--examples/config.manyhosts.inc.php2
-rw-r--r--examples/create_tables.sql4
4 files changed, 8 insertions, 8 deletions
diff --git a/config.sample.inc.php b/config.sample.inc.php
index 618e6e8ff0..b633138a62 100644
--- a/config.sample.inc.php
+++ b/config.sample.inc.php
@@ -61,7 +61,7 @@ $cfg['Servers'][$i]['AllowNoPassword'] = false;
// $cfg['Servers'][$i]['recent'] = 'pma__recent';
// $cfg['Servers'][$i]['users'] = 'pma__users';
// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
-// $cfg['Servers'][$i]['hidden_tables'] = 'pma__hidden_tables';
+// $cfg['Servers'][$i]['navigation'] = 'pma__navigation';
/* Contrib / Swekey authentication */
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
diff --git a/doc/config.rst b/doc/config.rst
index dc27820fe8..2a4e957ba0 100644
--- a/doc/config.rst
+++ b/doc/config.rst
@@ -673,8 +673,8 @@ Server connection settings
:config:option:`$cfg['Servers'][$i]['users']` (e.g. ``pma__users``) and
:config:option:`$cfg['Servers'][$i]['usergroups']` (e.g. ``pma__usergroups``)
-.. _hidden_tables:
-.. config:option:: $cfg['Servers'][$i]['hidden_tables']
+.. _navigation:
+.. config:option:: $cfg['Servers'][$i]['navigation']
:type: string
:default: ``''``
@@ -684,8 +684,8 @@ Server connection settings
To allow the usage of this functionality:
* set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
- * put the table name in :config:option:`$cfg['Servers'][$i]['hidden_tables']` (e.g.
- ``pma__hidden_tables``)
+ * put the table name in :config:option:`$cfg['Servers'][$i]['navigation']` (e.g.
+ ``pma__navigation``)
.. _tracking:
.. config:option:: $cfg['Servers'][$i]['tracking']
diff --git a/examples/config.manyhosts.inc.php b/examples/config.manyhosts.inc.php
index f5811a3307..86992ae604 100644
--- a/examples/config.manyhosts.inc.php
+++ b/examples/config.manyhosts.inc.php
@@ -47,5 +47,5 @@ foreach ($hosts as $host) {
$cfg['Servers'][$i]['recent'] = 'pma__recent';
$cfg['Servers'][$i]['users'] = 'pma__users';
$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
- $cfg['Servers'][$i]['hidden_tables'] = 'pma__hidden_tables';
+ $cfg['Servers'][$i]['navigation'] = 'pma__navigation';
}
diff --git a/examples/create_tables.sql b/examples/create_tables.sql
index 6676bb835c..1e98d884fc 100644
--- a/examples/create_tables.sql
+++ b/examples/create_tables.sql
@@ -306,10 +306,10 @@ CREATE TABLE IF NOT EXISTS `pma__usergroups` (
-- --------------------------------------------------------
--
--- Table structure for table `pma__hidden_tables`
+-- Table structure for table `pma__navigation`
--
-CREATE TABLE IF NOT EXISTS `pma__hidden_tables` (
+CREATE TABLE IF NOT EXISTS `pma__navigation` (
`username` varchar(64) NOT NULL,
`item_name` varchar(64) NOT NULL,
`item_type` varchar(64) NOT NULL,