diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-22 06:06:02 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-22 06:06:02 +0000 |
commit | 55341f14f2ea8b495c04792b47e372063fefae75 (patch) | |
tree | 700e52b853385614189382835716d01160c52a9a /modules/comment/helpers | |
parent | a347ed5c10f11843dd49be907d771fbc73941841 (diff) |
Correct case on helper class names. By convention, helper class names are lower case:
http://docs.kohanaphp.com/general/helpers
Diffstat (limited to 'modules/comment/helpers')
-rw-r--r-- | modules/comment/helpers/comment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/helpers/comment.php b/modules/comment/helpers/comment.php index 2308ef89..462300b8 100644 --- a/modules/comment/helpers/comment.php +++ b/modules/comment/helpers/comment.php @@ -23,7 +23,7 @@ * * Note: by design, this class does not do any permission checking. */ -class Comment_Core { +class comment_Core { const SECONDS_IN_A_MINUTE = 60; const SECONDS_IN_AN_HOUR = 3600; const SECONDS_IN_A_DAY = 86400; |