From 31754e1a27c56422c287393c79e727ddf75788cb Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 16 Apr 2010 15:10:47 +0000 Subject: Fix the name of the input in the wire's add action. git-svn-id: http://code.elgg.org/elgg/trunk@5772 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/thewire/actions/add.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/thewire/actions/add.php') diff --git a/mod/thewire/actions/add.php b/mod/thewire/actions/add.php index de2538e1e..987848047 100644 --- a/mod/thewire/actions/add.php +++ b/mod/thewire/actions/add.php @@ -14,7 +14,7 @@ if (!isloggedin()) forward(); // Get input data -$body = get_input('note'); +$body = get_input('new_post_textarea'); $access_id = (int)get_default_access(); if ($access_id == ACCESS_PRIVATE) { $access_id = ACCESS_LOGGED_IN; // Private wire messages are pointless @@ -42,4 +42,4 @@ system_message(elgg_echo("thewire:posted")); // Forward forward("mod/thewire/everyone.php"); -?> \ No newline at end of file +?> -- cgit v1.2.3