set is_process_priv to TRUE as default

This commit is contained in:
Michal Čihař
2002-12-18 16:12:33 +00:00
parent 5ab1322c1f
commit 2c4edaa7b1
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-12-18 Michal Cihar <nijel@users.sourceforge.net>
* main.php3: Since every user has access to his processlist, set
is_process_priv to TRUE as default (fixes undefined variable warning).
2002-12-18 Marc Delisle <lem9@users.sourceforge.net>
* tbl_select.php3, bug 648263
* libraries/common.lib.php3, bug 653764

View File

@@ -179,7 +179,7 @@ if ($server > 0) {
// Get user's global privileges ($dbh and $userlink are links to MySQL
// defined in the "common.lib.php3" library)
$is_create_priv = FALSE;
// $is_process_priv = FALSE;
$is_process_priv = TRUE;
$is_reload_priv = FALSE;
$is_superuser = @PMA_mysql_query('USE mysql', $userlink);
if ($dbh) {