aboutsummaryrefslogtreecommitdiffstats
path: root/upload.php
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2007-06-12 22:00:59 +0000
committervdigital <vdigital@piwigo.org>2007-06-12 22:00:59 +0000
commit106c39d7bd042c78f4863e271af6da941a6bd082 (patch)
tree63d357971a4352e38540d319e8f60c8e0a8a6820 /upload.php
parentfcb3c824a0ee2c750453de1ccc12dd4a9af8f0b0 (diff)
Bug 0000705: Upload error with incomplete URL.
+ Broken link in Admin/intro.php git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2034 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'upload.php')
-rw-r--r--upload.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/upload.php b/upload.php
index e304af70f..3ba555486 100644
--- a/upload.php
+++ b/upload.php
@@ -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;