diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/network.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/network.php b/include/network.php index ec3474a41..c95ae90a1 100644 --- a/include/network.php +++ b/include/network.php @@ -2093,9 +2093,7 @@ function jsonld_document_loader($url) { if (file_exists($filename) && filemtime($filename) > time() - (12 * 60 * 60)) { logger('loading ' . $filename . ' from recent cache'); - - $doc->document = file_get_contents($filename); - return $doc; + return file_get_contents($filename); } $r = jsonld_default_document_loader($url); @@ -2112,8 +2110,7 @@ function jsonld_document_loader($url) { if (file_exists($filename)) { logger('loading ' . $filename . ' from longterm cache'); - $doc->document = file_get_contents($filename); - return $doc; + return file_get_contents($filename); } else { logger($filename . ' does not exist and cannot be loaded'); |