Skip to content

Commit d0522a7

Browse files
Revert half done commit
1 parent 1ae59ad commit d0522a7

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

config.sample.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
// $cfg['Servers'][$i]['recent'] = 'pma__recent';
6262
// $cfg['Servers'][$i]['users'] = 'pma__users';
6363
// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
64-
// $cfg['Servers'][$i]['hidden_tables'] = 'pma__hidden_tables';
64+
// $cfg['Servers'][$i]['navigation'] = 'pma__navigation';
6565
/* Contrib / Swekey authentication */
6666
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
6767

doc/config.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -673,8 +673,8 @@ Server connection settings
673673
:config:option:`$cfg['Servers'][$i]['users']` (e.g. ``pma__users``) and
674674
:config:option:`$cfg['Servers'][$i]['usergroups']` (e.g. ``pma__usergroups``)
675675

676-
.. _hidden_tables:
677-
.. config:option:: $cfg['Servers'][$i]['hidden_tables']
676+
.. _navigation:
677+
.. config:option:: $cfg['Servers'][$i]['navigation']
678678
679679
:type: string
680680
:default: ``''``
@@ -684,8 +684,8 @@ Server connection settings
684684
To allow the usage of this functionality:
685685

686686
* set up :config:option:`$cfg['Servers'][$i]['pmadb']` and the phpMyAdmin configuration storage
687-
* put the table name in :config:option:`$cfg['Servers'][$i]['hidden_tables']` (e.g.
688-
``pma__hidden_tables``)
687+
* put the table name in :config:option:`$cfg['Servers'][$i]['navigation']` (e.g.
688+
``pma__navigation``)
689689

690690
.. _tracking:
691691
.. config:option:: $cfg['Servers'][$i]['tracking']

examples/config.manyhosts.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@
4747
$cfg['Servers'][$i]['recent'] = 'pma__recent';
4848
$cfg['Servers'][$i]['users'] = 'pma__users';
4949
$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
50-
$cfg['Servers'][$i]['hidden_tables'] = 'pma__hidden_tables';
50+
$cfg['Servers'][$i]['navigation'] = 'pma__navigation';
5151
}

examples/create_tables.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,10 @@ CREATE TABLE IF NOT EXISTS `pma__usergroups` (
306306
-- --------------------------------------------------------
307307

308308
--
309-
-- Table structure for table `pma__hidden_tables`
309+
-- Table structure for table `pma__navigation`
310310
--
311311

312-
CREATE TABLE IF NOT EXISTS `pma__hidden_tables` (
312+
CREATE TABLE IF NOT EXISTS `pma__navigation` (
313313
`username` varchar(64) NOT NULL,
314314
`item_name` varchar(64) NOT NULL,
315315
`item_type` varchar(64) NOT NULL,

0 commit comments

Comments
 (0)