From: Karl O. Pinc Date: Sun, 30 Sep 2012 19:42:58 +0000 (+0200) Subject: Fix PHP notice on database privilege page X-Git-Tag: REL_5-1-0~27 X-Git-Url: http://git.postgresql.org/gitweb/delmail?a=commitdiff_plain;h=75a202d6c372ca7f3c3a12f52bcd53c57cc085a1;p=phppgadmin.git Fix PHP notice on database privilege page Schema is not set at database level...By Karl O. Pinc modified by me. --- 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());