]> git.mxchange.org Git - friendica.git/blobdiff - include/cache.php
Class file relocations
[friendica.git] / include / cache.php
index 9571eb8d9f113fb8dc4071700f1a431e0ffc9fe4..6bdb3e2f66ccc559e659ad3036ddaa7808a49f79 100644 (file)
@@ -7,6 +7,7 @@
 
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
+use Friendica\Database\DBM;
 
 class Cache {
        /**
@@ -104,7 +105,7 @@ class Cache {
                        dbesc($key)
                );
 
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $cached = $r[0]['v'];
                        $value = @unserialize($cached);