summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-11-13 02:32:18 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-11-13 02:32:18 +0000
commit21bed11e668d0a526d35d0baab4606af64141b00 (patch)
tree059370bbd41239a15997c9313a95119dd296c3f9 /modules/comment/comment.module
parentdaca20e03467373e380e241107e0f7842a576f68 (diff)
downloadbrdo-21bed11e668d0a526d35d0baab4606af64141b00.tar.gz
brdo-21bed11e668d0a526d35d0baab4606af64141b00.tar.bz2
- Add missing url()s around form actions (these would break without clean URLs)
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index f98b94ee9..a2b376630 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -1199,7 +1199,7 @@ function comment_controls($mode = 2, $order = 1, $comments_per_page = 50, $nid =
$form['nid'] = array('#type' => 'hidden', '#value' => $nid);
- $form['#action'] = 'comment/reply';
+ $form['#action'] = url('comment/reply');
return drupal_get_form('comment_controls'. $top_or_bottom, $form, 'comment_controls');
}