feature 2200: bug fixed when there is no ?page= in URL (on admin homepage)

git-svn-id: http://piwigo.org/svn/trunk@9358 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2011-02-23 09:27:57 +00:00
parent e28cbddada
commit 31fab45f93

View File

@@ -80,7 +80,7 @@ if (mt_rand(0,9)==0)
// ?page=plugin-community-pendings is an clean alias of
// ?page=plugin&section=community/admin.php&tab=pendings
if (preg_match('/^plugin-([^-]*)(?:-(.*))?$/', $_GET['page'], $matches))
if (isset($_GET['page']) and preg_match('/^plugin-([^-]*)(?:-(.*))?$/', $_GET['page'], $matches))
{
$_GET['page'] = 'plugin';
$_GET['section'] = $matches[1].'/admin.php';