From fafd32e2dc98eeb3a159c29b12cee2d144ad243f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 10 Feb 2017 15:14:47 +0300 Subject: [PATCH] use get_self_url_prefix() when rewriting cached images --- include/functions2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions2.php b/include/functions2.php index 76d92920..d490ae50 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -914,7 +914,7 @@ $cached_filename = CACHE_DIR . '/images/' . sha1($src) . $extension; if (file_exists($cached_filename)) { - $src = SELF_URL_PATH . '/public.php?op=cached_image&hash=' . sha1($src) . $extension; + $src = get_self_url_prefix() . '/public.php?op=cached_image&hash=' . sha1($src) . $extension; if ($entry->hasAttribute('srcset')) { $entry->removeAttribute('srcset'); -- 2.39.2