@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | self::$_can_cache_content_string = ''; |
29 | 29 | if ($this->owner->hasMethod('canCachePage')) { |
30 | 30 | self::$_can_cache_content_string = $this->owner->canCachePage() ? '' : 'can-no-cache-' . $this->owner->ID; |
31 | - if (! $this->canCacheCheck()) { |
|
31 | + if (!$this->canCacheCheck()) { |
|
32 | 32 | return false; |
33 | 33 | } |
34 | 34 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $action = $this->owner->request->param('Action'); |
38 | 38 | if ($action) { |
39 | 39 | self::$_can_cache_content_string .= $action; |
40 | - if (! $this->canCacheCheck()) { |
|
40 | + if (!$this->canCacheCheck()) { |
|
41 | 41 | return false; |
42 | 42 | } |
43 | 43 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | // id |
47 | 47 | if ($id) { |
48 | 48 | self::$_can_cache_content_string .= $id; |
49 | - if (! $this->canCacheCheck()) { |
|
49 | + if (!$this->canCacheCheck()) { |
|
50 | 50 | return false; |
51 | 51 | } |
52 | 52 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | self::$_can_cache_content_string .= $item; |
62 | 62 | } |
63 | 63 | |
64 | - if (! $this->canCacheCheck()) { |
|
64 | + if (!$this->canCacheCheck()) { |
|
65 | 65 | return false; |
66 | 66 | } |
67 | 67 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $member = Security::getCurrentUser(); |
72 | 72 | if ($member && $member->exists()) { |
73 | 73 | self::$_can_cache_content_string .= $member->ID; |
74 | - if (! $this->canCacheCheck()) { |
|
74 | + if (!$this->canCacheCheck()) { |
|
75 | 75 | return false; |
76 | 76 | } |
77 | 77 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | { |
31 | 31 | $obj = SiteConfig::current_site_config(); |
32 | 32 | |
33 | - return (string) 'ts_'.strtotime($obj->CacheKeyLastEdited); |
|
33 | + return (string) 'ts_' . strtotime($obj->CacheKeyLastEdited); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | public static function update_cache_key() |