mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
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:
@@ -80,7 +80,7 @@ if (mt_rand(0,9)==0)
|
||||
|
||||
// ?page=plugin-community-pendings is an clean alias of
|
||||
// ?page=plugin§ion=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';
|
||||
|
||||
Reference in New Issue
Block a user