diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-16 06:43:31 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-16 06:43:31 +0000 |
commit | be67187ad95526b378decbab7cb7623fcf9ef5f3 (patch) | |
tree | ccc2a9e075eb1b269c818e9ff458ce9eec4d2e70 /modules/comment/controllers | |
parent | 1a79a1089340d0d6c913ce018532ec3bb8eed39c (diff) |
Create MY_Forge to specify the defaul html
Diffstat (limited to 'modules/comment/controllers')
-rw-r--r-- | modules/comment/controllers/comment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/controllers/comment.php b/modules/comment/controllers/comment.php index 67a4897b..d2135cf9 100644 --- a/modules/comment/controllers/comment.php +++ b/modules/comment/controllers/comment.php @@ -80,7 +80,7 @@ class Comment_Controller extends REST_Controller { $data = array('valid' => true, 'html' => sprintf(comment::show_comment_list($item_id))); } else { - $data = array('valid' => false, 'html' => sprintf($form->render("form.html"))); + $data = array('valid' => false, 'html' => sprintf($form->render())); } if (request::method() == "get") { |