From 75a202d6c372ca7f3c3a12f52bcd53c57cc085a1 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 30 Sep 2012 21:42:58 +0200 Subject: [PATCH] Fix PHP notice on database privilege page Schema is not set at database level...By Karl O. Pinc modified by me. --- privileges.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/privileges.php b/privileges.php index 23fb4d96..ea7b7f95 100644 --- a/privileges.php +++ b/privileges.php @@ -283,10 +283,12 @@ 'action' => 'alter', 'server' => $_REQUEST['server'], 'database' => $_REQUEST['database'], - 'schema' => $_REQUEST['schema'], $subject => $object, 'subject'=> $subject ); + if (isset($_REQUEST['schema'])) { + $urlvars['schema'] = $_REQUEST['schema']; + } } $navlinks = array ( @@ -317,13 +319,15 @@ 'url' => $allurl, 'urlvars' => array ( 'server' => $_REQUEST['server'], - 'database' => $_REQUEST['database'], - 'schema' => $_REQUEST['schema'] + 'database' => $_REQUEST['database'] ) ) ), 'content' => $alltxt ); + if (isset($_REQUEST['schema'])) { + $navlinks[$alllabel]['attr']['href']['urlvars']['schema'] = $_REQUEST['schema']; + } } $misc->printNavLinks($navlinks, 'privileges-privileges', get_defined_vars()); -- 2.39.5