aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-03-28 18:44:25 +0000
committerCash Costello <cash.costello@gmail.com>2009-03-28 18:44:25 +0000
commit51bdec218af83488cd15a05c8d731e67fdd22264 (patch)
tree6e5c376b9ecccbc857a42644f2e3224f2ae97674 /actions
parent38335addc0fdcf3d798bfc783b0f159eb5c5c2d6 (diff)
downloadelgg-51bdec218af83488cd15a05c8d731e67fdd22264.tar.gz
elgg-51bdec218af83488cd15a05c8d731e67fdd22264.tar.bz2
fixed sticky form for album creation
Diffstat (limited to 'actions')
-rw-r--r--actions/addalbum.php40
-rw-r--r--actions/edit.php10
2 files changed, 23 insertions, 27 deletions
diff --git a/actions/addalbum.php b/actions/addalbum.php
index 23fdfd22d..b9954f1c6 100644
--- a/actions/addalbum.php
+++ b/actions/addalbum.php
@@ -8,32 +8,30 @@
if (!isloggedin()) forward();
// Get input data
- $title = get_input('albumtitle');
- $body = get_input('albumbody');
- $tags = get_input('albumtags');
+ $title = get_input('tidypicstitle');
+ $body = get_input('tidypicsbody');
+ $tags = get_input('tidypicstags');
$access = get_input('access_id');
$container_guid = get_input('container_guid', $_SESSION['user']->getGUID());
- $back_url = 'pg/photos/new/' . get_entity($container_guid)->username;
-
+
// Cache to the session
- $_SESSION['albumtitle'] = $title;
- $_SESSION['albumbody'] = $body;
- $_SESSION['albumtags'] = $tags;
-
+ $_SESSION['tidypicstitle'] = $title;
+ $_SESSION['tidypicsbody'] = $body;
+ $_SESSION['tidypicstags'] = $tags;
+
// Convert string of tags into a preformatted array
- $tagarray = string_to_tag_array($tags);
- // Make sure the title / description aren't blank
- if (empty($title) || empty($body)) {
- register_error(elgg_echo("album:blank"));
- forward(get_input('forward_url', $_SERVER['HTTP_REFERER'])); //failed, so forward to previous page
-
+ $tagarray = string_to_tag_array($tags);
+ // Make sure the title isn't blank
+ if (empty($title)) {
+ register_error(elgg_echo("album:blank"));
+ forward($_SERVER['HTTP_REFERER']); //failed, so forward to previous page
// Otherwise, save the album
} else {
// Initialise a new ElggObject
$album = new ElggObject();
// Tell the system it's an album
- $album->subtype = "album";
+ $album->subtype = "album";
// Set its owner to the current user
$album->container_guid = $container_guid;
@@ -62,11 +60,11 @@
system_message(elgg_echo("album:created"));
// Remove the album post cache
- unset($_SESSION['albumtitle']);
- unset($_SESSION['albumbody']);
- unset($_SESSION['albumtags']);
+ unset($_SESSION['tidypicstitle']);
+ unset($_SESSION['tidypicsbody']);
+ unset($_SESSION['tidypicstags']);
- forward("pg/photos/upload/" . $album->guid);
+ forward("pg/photos/upload/" . $album->guid);
}
-
+
?> \ No newline at end of file
diff --git a/actions/edit.php b/actions/edit.php
index a5d84bc18..5eab8caff 100644
--- a/actions/edit.php
+++ b/actions/edit.php
@@ -10,14 +10,13 @@
// Get input data
$guid = (int) get_input('guid'); // guid of image or album
- $title = get_input('title');
- $body = get_input('descript');
+ $title = get_input('tidypicstitle');
+ $body = get_input('tidypicsbody');
$access = get_input('access_id');
- $tags = get_input('tags');
+ $tags = get_input('tidypicstags');
$subtype = get_input('subtype');
$container_guid = get_input('container_guid');
- error_log('container_guid is ' . $container_guid);
// Make sure we actually have permission to edit
$entity = get_entity($guid);
@@ -26,7 +25,6 @@
}
// Get owning user/group
- error_log("owning user is " . $entity->getOwner());
$owner = get_entity($entity->getOwner());
// change access only if access is different from current
@@ -73,4 +71,4 @@
system_message(elgg_echo('images:edited'));
forward($entity->getURL());
-?> \ No newline at end of file
+?>