diff options
author | Git <git@what.cd> | 2015-03-01 08:00:26 +0000 |
---|---|---|
committer | Git <git@what.cd> | 2015-03-01 08:00:26 +0000 |
commit | a323d223d4110531140f4537c7e69d819506deed (patch) | |
tree | 19785524ebde4c5d9421b70ab924111241bc3ed0 | |
parent | e607d26004bf0b33851d88e54a9e0a8c1735420b (diff) | |
download | Gazelle-a323d223d4110531140f4537c7e69d819506deed.zip Gazelle-a323d223d4110531140f4537c7e69d819506deed.tar.gz Gazelle-a323d223d4110531140f4537c7e69d819506deed.tar.bz2 |
Empty commit
-rw-r--r-- | sections/upload/upload_handle.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sections/upload/upload_handle.php b/sections/upload/upload_handle.php index b1b2a66..81ea09a 100644 --- a/sections/upload/upload_handle.php +++ b/sections/upload/upload_handle.php @@ -83,7 +83,10 @@ if (empty($_POST['artists'])) { $Artists = $_POST['artists']; $Importance = $_POST['importance']; } -$RequestID = $_POST['requestid']; +if (!empty($_POST['requestid'])) { + $RequestID = $_POST['requestid']; + $Properties['RequestID'] = $RequestID; +} //******************************************************************************// //--------------- Validate data in upload form ---------------------------------// |