Showing
1 changed file
with
2 additions
and
2 deletions
@@ -103,11 +103,11 @@ class Cache | @@ -103,11 +103,11 @@ class Cache | ||
103 | try { | 103 | try { |
104 | // WINDOWS | 104 | // WINDOWS |
105 | if (DIRECTORY_SEPARATOR === '\\') { | 105 | if (DIRECTORY_SEPARATOR === '\\') { |
106 | - $result = HoodCache::Memcache($node)->getBy(key); | 106 | + $result = HoodCache::Memcache($node)->getBy($key); |
107 | } | 107 | } |
108 | // LINUX | 108 | // LINUX |
109 | else { | 109 | else { |
110 | - $result = HoodCache::Memcached($node)->getBy(key); | 110 | + $result = HoodCache::Memcached($node)->getBy($key); |
111 | } | 111 | } |
112 | } catch (Exception $e) { | 112 | } catch (Exception $e) { |
113 | $result = array(); | 113 | $result = array(); |
-
Please register or login to post a comment