diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-11 22:46:25 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-11 22:46:25 +0000 |
commit | b0a3308740d121c7ba504c1625f08901d713d750 (patch) | |
tree | b27409031e19077b6dc4a836266d23fadb1a01f8 /modules/comment/helpers | |
parent | 752459c64cafec0f003c4b8531201c58a5fecad7 (diff) |
Minor cleanup; localization, indentation, etc.
Diffstat (limited to 'modules/comment/helpers')
-rw-r--r-- | modules/comment/helpers/comment.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/comment/helpers/comment.php b/modules/comment/helpers/comment.php index a768bdcf..1c454952 100644 --- a/modules/comment/helpers/comment.php +++ b/modules/comment/helpers/comment.php @@ -33,7 +33,7 @@ class Comment_Core { * @param integer $datetime optional comment date and time in Unix format * @return Comment_Model */ - static function create($author, $email, $text, $item_id, $datetime = NULL) { + static function create($author, $email, $text, $item_id, $datetime=NULL) { if (is_null($datetime)) { $datetime = time(); } @@ -68,4 +68,6 @@ class Comment_Core { $v = new View('comment_form.html'); $v->item_id = $item_id; return $v; - }} + } +} + |