diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-22 16:56:55 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-22 16:56:55 +0000 |
commit | 1d33c3fd07fbfa41359af0e99079f57f022e7124 (patch) | |
tree | 7c8a11ab79801d4545aa8ca6ec8be1f231b2b287 /mod/externalpages/actions | |
parent | a140ef9c53edb2e249eab2eafccc6eb8c0952dab (diff) | |
download | elgg-1d33c3fd07fbfa41359af0e99079f57f022e7124.tar.gz elgg-1d33c3fd07fbfa41359af0e99079f57f022e7124.tar.bz2 |
Merged 1.7 bugfixes back into core. (5376:HEAD).
git-svn-id: http://code.elgg.org/elgg/trunk@5471 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/externalpages/actions')
-rw-r--r-- | mod/externalpages/actions/add.php | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/mod/externalpages/actions/add.php b/mod/externalpages/actions/add.php index f8746312c..79f16bad5 100644 --- a/mod/externalpages/actions/add.php +++ b/mod/externalpages/actions/add.php @@ -16,17 +16,12 @@ // Get input data $contents = get_input('expagescontent', '', false); $type = get_input('content_type'); - $tags = get_input('expagestags'); $previous_guid = get_input('expage_guid'); // Cache to the session $_SESSION['expages_content'] = $contents; $_SESSION['expagestype'] = $type; - $_SESSION['expagestags'] = $tags; - - // Convert string of tags into a preformatted array - $tagarray = string_to_tag_array($tags); - + // Make sure the content exists if (empty($contents)) { register_error(elgg_echo("expages:blank")); @@ -47,7 +42,7 @@ // Set its owner to the current user $expages->owner_guid = $_SESSION['user']->getGUID(); // For now, set its access to public - $expages->access_id = 2; + $expages->access_id = ACCESS_PUBLIC; // Set its title and description appropriately $expages->title = $type; $expages->description = $contents; @@ -56,17 +51,13 @@ register_error(elgg_echo("expages:error")); forward("mod/expages/add.php"); } - // Now let's add tags. We can pass an array directly to the object property! Easy. - if (is_array($tagarray)) { - $expages->tags = $tagarray; - } // Success message system_message(elgg_echo("expages:posted")); // add to river add_to_river('river/expages/create','create',$_SESSION['user']->guid,$expages->guid); // Remove the cache - unset($_SESSION['expages_content']); unset($_SESSION['expagestitle']); unset($_SESSION['expagestags']); + unset($_SESSION['expages_content']); unset($_SESSION['expagestitle']); // Forward back to the page @@ -74,4 +65,4 @@ } -?> +?>
\ No newline at end of file |