diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-06 19:36:28 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-06 19:36:28 +0000 |
commit | cfaa89dd2d32bc3c17d55def95a1fd49187e1667 (patch) | |
tree | a33e02e9c3bbd4223849769d806d82873d5f5f34 /mod/messages | |
parent | f06582a79a42988934efb810ea26faee5b4c47f4 (diff) | |
download | elgg-cfaa89dd2d32bc3c17d55def95a1fd49187e1667.tar.gz elgg-cfaa89dd2d32bc3c17d55def95a1fd49187e1667.tar.bz2 |
Fixes #2854 removing my bad idea of auto-appending action in elgg_view_form()
git-svn-id: http://code.elgg.org/elgg/trunk@8046 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/messages')
-rw-r--r-- | mod/messages/read.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/messages/read.php b/mod/messages/read.php index 5a735f18e..84ec7e124 100644 --- a/mod/messages/read.php +++ b/mod/messages/read.php @@ -32,7 +32,7 @@ if ($inbox) { $form_params = array( 'internalid' => 'messages-reply-form', 'class' => 'hidden', - 'action' => 'messages/send', + 'action' => 'action/messages/send', ); $body_params = array('message' => $message); $content .= elgg_view_form('messages/reply', $form_params, $body_params); |