summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-08-14 09:49:18 +0300
committerAndrew Dolgov <[email protected]>2019-08-14 09:49:18 +0300
commit3c075bfd21adac9a4dde4fab6bd22886d6173d30 (patch)
tree29e29d6fbb1ce196c5af807338c8a56abf518f85 /plugins
parent65450f8a2bbf325d26177c2589c3a9bbe67d8f80 (diff)
DiskCache: more strict checking for input filenames, getUrl() is no longer static
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/cache_starred_images/init.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/cache_starred_images/init.php b/plugins/cache_starred_images/init.php
index 916cedd53..967569543 100755
--- a/plugins/cache_starred_images/init.php
+++ b/plugins/cache_starred_images/init.php
@@ -101,7 +101,7 @@ class Cache_Starred_Images extends Plugin {
$local_filename = $article_id . "-" . sha1($enc["content_url"]);
if ($this->cache->exists($local_filename)) {
- $enc["content_url"] = DiskCache::getUrl("starred-images/" . $local_filename);
+ $enc["content_url"] = $this->cache->getUrl($local_filename);
}
return $enc;
@@ -123,7 +123,7 @@ class Cache_Starred_Images extends Plugin {
$local_filename = $article_id . "-" . sha1($src);
if ($this->cache->exists($local_filename)) {
- $entry->setAttribute("src", DiskCache::getUrl("starred-images/" . $local_filename));
+ $entry->setAttribute("src", $this->cache->getUrl($local_filename));
$entry->removeAttribute("srcset");
}
}