mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-03 20:12:44 +02:00
Bug 0000705: Upload error with incomplete URL.
+ Broken link in Admin/intro.php git-svn-id: http://piwigo.org/svn/trunk@2033 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -124,7 +124,7 @@ function validate_upload( $temp_name, $my_max_file_size,
|
||||
}
|
||||
|
||||
//-------------------------------------------------- access authorization check
|
||||
if (is_numeric($_GET['cat']))
|
||||
if (isset($_GET['cat']) and is_numeric($_GET['cat']))
|
||||
{
|
||||
$page['category'] = $_GET['cat'];
|
||||
}
|
||||
@@ -140,6 +140,9 @@ if (isset($page['category']))
|
||||
die('Fatal: you take a wrong way, bye bye');
|
||||
}
|
||||
}
|
||||
else { // $page['category'] may be set by a futur plugin but without it
|
||||
die('Fatal: you take a wrong way, bye bye');
|
||||
}
|
||||
|
||||
$error = array();
|
||||
$page['upload_successful'] = false;
|
||||
|
||||
Reference in New Issue
Block a user