diff options
author | Jehan-Guillaume (ioguix) de Rorthais | 2012-02-23 17:30:03 +0000 |
---|---|---|
committer | Jehan-Guillaume (ioguix) de Rorthais | 2012-02-23 17:30:03 +0000 |
commit | 7bf05b8781cfa317c1b9a4011ebb7aaf24f79737 (patch) | |
tree | 439c1ff3aefd2c7a448de622a79dfef47867ada6 | |
parent | 216e27a688b0e2a76f2eac6407b631d84db1496d (diff) |
Fix a bug where clicking to "Show all schemas" on schema privilege page leads back to the latest tab used in database level.
-rw-r--r-- | privileges.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/privileges.php b/privileges.php index 451bb2dc..b552543a 100644 --- a/privileges.php +++ b/privileges.php @@ -236,7 +236,7 @@ $alltxt = $lang["strshowall{$_REQUEST['subject']}s"]; break; case 'schema': - $allurl = "database.php"; + $allurl = "schemas.php"; $alltxt = $lang["strshowallschemas"]; break; case 'database': |