From 2db70f7cff86624b1f506da0fef186b851785efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Sat, 18 May 2002 09:41:43 +0000 Subject: [PATCH] Added new severs directives for the ip allow/deny feature to all the servers arrays. --- config.inc.php3 | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/config.inc.php3 b/config.inc.php3 index 77b0e66dc..0551bb3e9 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -55,10 +55,10 @@ $cfg['Servers'][$i]['pdf_table_position'] // tables position for the // PDF schema - leave blank // for no PDF schema support -$cfg['Servers'][$i]['AllowDeny']['order'] +$cfg['Servers'][$i]['AllowDeny']['order'] = ''; // Host authentication order, leave blank to not use -$cfg['Servers'][$i]['AllowDeny']['rules'] - = array( ); // Host authentication rules, leave blank for defaults +$cfg['Servers'][$i]['AllowDeny']['rules'] + = array(); // Host authentication rules, leave blank for defaults $i++; @@ -78,6 +78,10 @@ $cfg['Servers'][$i]['bookmarktable'] = ''; $cfg['Servers'][$i]['relation'] = ''; $cfg['Servers'][$i]['pdf_table_position'] = ''; +$cfg['Servers'][$i]['AllowDeny']['order'] + = ''; +$cfg['Servers'][$i]['AllowDeny']['rules'] + = array(); $i++; $cfg['Servers'][$i]['host'] = ''; @@ -96,6 +100,10 @@ $cfg['Servers'][$i]['bookmarktable'] = ''; $cfg['Servers'][$i]['relation'] = ''; $cfg['Servers'][$i]['pdf_table_position'] = ''; +$cfg['Servers'][$i]['AllowDeny']['order'] + = ''; +$cfg['Servers'][$i]['AllowDeny']['rules'] + = array(); // If you have more than one server configured, you can set $cfg['ServerDefault'] // to any one of them to autoconnect to that server when phpMyAdmin is started,