Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4d7ec6
)
MDL-36937 cache: Fixed up typo
author
Sam Hemelryk
<sam@moodle.com>
Fri, 30 Nov 2012 01:29:58 +0000
(14:29 +1300)
committer
Sam Hemelryk
<sam@moodle.com>
Fri, 30 Nov 2012 01:29:58 +0000
(14:29 +1300)
cache/classes/store.php
patch
|
blob
|
blame
|
history
diff --git
a/cache/classes/store.php
b/cache/classes/store.php
index
75cd8d8
..
dca65da
100644
(file)
--- a/
cache/classes/store.php
+++ b/
cache/classes/store.php
@@
-261,6
+261,6
@@
abstract class cache_store implements cache_store_interface {
* @return bool
*/
public function supports_native_ttl() {
- return $this::
supports_data_guarantee
() & self::SUPPORTS_NATIVE_TTL;
+ return $this::
get_supported_features
() & self::SUPPORTS_NATIVE_TTL;
}
}