diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-19 19:31:34 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-19 19:31:34 +0000 |
commit | 02a52af62e1579ad174b1160071b82ec11ee31e3 (patch) | |
tree | cd14f5338df64b69dffb03499ce7222f93c9f988 /mod/messageboard/actions/add.php | |
parent | 93cf8041ef996eae3912116cee572f7ff26efc92 (diff) | |
download | elgg-02a52af62e1579ad174b1160071b82ec11ee31e3.tar.gz elgg-02a52af62e1579ad174b1160071b82ec11ee31e3.tar.bz2 |
Refs #2916. More cleanup of the messageboard widget.
git-svn-id: http://code.elgg.org/elgg/trunk@8344 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/messageboard/actions/add.php')
-rw-r--r-- | mod/messageboard/actions/add.php | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/mod/messageboard/actions/add.php b/mod/messageboard/actions/add.php index 5a34904d7..55bc5775a 100644 --- a/mod/messageboard/actions/add.php +++ b/mod/messageboard/actions/add.php @@ -10,15 +10,28 @@ $owner_guid = get_input("owner_guid"); $owner = get_entity($owner_guid); if ($owner && !empty($message_content)) { - if (messageboard_add(elgg_get_logged_in_user_entity(), $owner, $message_content, $owner->access_id)) { + $result = messageboard_add(elgg_get_logged_in_user_entity(), $owner, $message_content, $owner->access_id); + + if ($result) { system_message(elgg_echo("messageboard:posted")); // push the newest content out if using ajax $is_ajax = array_key_exists('HTTP_X_REQUESTED_WITH', $_SERVER) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest'; if ($is_ajax) { - $contents = $owner->getAnnotations('messageboard', 1, 0, 'desc'); - $post = elgg_view("messageboard/messageboard_content", array('annotation' => $contents[0])); - echo json_encode(array('post' => $post)); + // always return the entity with the full ul and li + // this is parsed out as needed by js. + // if this is the only post we need to return the entire ul + $options = array( + 'annotations_name' => 'messageboard', + 'guid' => $owner->getGUID(), + 'limit' => $num_display, + 'pagination' => false, + 'reverse_order_by' => true, + 'limit' => 1 + ); + + $output = elgg_list_annotations($options); + echo json_encode(array('post' => $output)); } } else { |