diff options
Diffstat (limited to 'mod')
-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 +?> |