From 3708c1ac8c60c500e3aa15450380fe657f1dd24a Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 16 Sep 2023 10:51:28 +0000 Subject: fix regression in jsonld_document_loader() --- include/network.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'include/network.php') 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'); -- cgit v1.2.3