diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-16 15:10:47 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-16 15:10:47 +0000 |
commit | 31754e1a27c56422c287393c79e727ddf75788cb (patch) | |
tree | 27c915a3a35edaaf6c4c6c315a8377dd2caaee2e /mod/thewire/actions/add.php | |
parent | b69cabc08efeca61e175f40e9dfb9a14871abafc (diff) | |
download | elgg-31754e1a27c56422c287393c79e727ddf75788cb.tar.gz elgg-31754e1a27c56422c287393c79e727ddf75788cb.tar.bz2 |
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
Diffstat (limited to 'mod/thewire/actions/add.php')
-rw-r--r-- | mod/thewire/actions/add.php | 4 |
1 files changed, 2 insertions, 2 deletions
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 +?> |