diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-10-25 00:22:20 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-10-25 00:22:20 +0000 |
commit | 893364a28955358ad259bfb75798560616ab3d49 (patch) | |
tree | 8b2ac2fb618596fed82b12c221eb7c485cbb9590 /actions/upload.php | |
parent | da1493b95a2f0b5000a487ae373c9318c58d0b2d (diff) | |
download | elgg-893364a28955358ad259bfb75798560616ab3d49.tar.gz elgg-893364a28955358ad259bfb75798560616ab3d49.tar.bz2 |
supporting both basic and flash uploader
Diffstat (limited to 'actions/upload.php')
-rw-r--r-- | actions/upload.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/upload.php b/actions/upload.php index 8dae85277..b3ad9ebc3 100644 --- a/actions/upload.php +++ b/actions/upload.php @@ -9,8 +9,8 @@ include_once dirname(dirname(__FILE__)) . "/lib/upload.php"; // Get common variables $access_id = (int) get_input("access_id"); -$container_guid = (int) get_input('container_guid', 0); -$album = get_entity($container_guid); +$album_guid = (int) get_input('album_guid', 0); +$album = get_entity($album_guid); if (!$album) { register_error(elgg_echo('tidypics:baduploadform')); forward($_SERVER['HTTP_REFERER']); @@ -101,7 +101,7 @@ foreach($_FILES as $key => $sent_file) { //this will save to users folder in /image/ and organize by photo album $file = new TidypicsImage(); - $file->container_guid = $container_guid; + $file->container_guid = $album_guid; $file->setMimeType($mime); $file->simpletype="image"; $file->access_id = $access_id; |