diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-18 18:34:54 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-18 18:34:54 +0000 |
commit | 2ca56c0bc6a4f503ebf4444f1da1c7c8c400d8aa (patch) | |
tree | b7a07fa494958c10e3e1c4ba5cafb7df557fb69f /lib | |
parent | 2c4db393f54eddbe021b11a42ed2bb6abf5b11b2 (diff) |
Update caching methods to use camel case
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/action.php b/lib/action.php index e62a032b6..89c7d5d7b 100644 --- a/lib/action.php +++ b/lib/action.php @@ -452,7 +452,7 @@ class Action extends HTMLOutputter // lawsuit // For comparison with If-Last-Modified // If not applicable, return null - function last_modified() + function lastModified() { return null; } @@ -487,7 +487,7 @@ class Action extends HTMLOutputter // lawsuit function handle($argarray=null) { - $lm = $this->last_modified(); + $lm = $this->lastModified(); $etag = $this->etag(); if ($etag) { @@ -501,7 +501,7 @@ class Action extends HTMLOutputter // lawsuit $ims = strtotime($if_modified_since); if ($lm <= $ims) { if (!$etag || - $this->_has_etag($etag, $_SERVER['HTTP_IF_NONE_MATCH'])) { + $this->_hasEtag($etag, $_SERVER['HTTP_IF_NONE_MATCH'])) { header('HTTP/1.1 304 Not Modified'); // Better way to do this? exit(0); @@ -511,7 +511,7 @@ class Action extends HTMLOutputter // lawsuit } } - function _has_etag($etag, $if_none_match) + function _hasEtag($etag, $if_none_match) { return ($if_none_match) && in_array($etag, explode(',', $if_none_match)); } |