From dfce5aedf11dff21113e96b8c70dd3b877561648 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Mon, 21 Aug 2023 15:50:23 +0200 Subject: Do not cache content between OneDomain mode and old-style domains --- it_url.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_url.class b/it_url.class index 00036e3..1b2bfc7 100644 --- a/it_url.class +++ b/it_url.class @@ -559,7 +559,7 @@ static function get_cache_filename($p) $p['cachedir'] = it_url::get_cache_dir($p); unset($p['headers']['Authorization']); # prevent ever changing filenames due to changing Bearer tokens - $filename = $p['cachefilename'] ?: md5(T_lang() . T_defaultlang() . $p['url'] . ($p['headers'] ? serialize($p['headers']) : "") . ($p['data'] ? serialize($p['data']) : "")); + $filename = $p['cachefilename'] ?: md5(T_lang() . T_defaultlang() . $p['url'] . ($p['headers'] ? serialize($p['headers']) : "") . ($p['data'] ? serialize($p['data']) : "") . $_SERVER['HTTP_X_SERVICE_PATH']); return $p['cachedir'] . "/" . substr($filename, 0, 2) . "/$filename"; } -- cgit v1.2.3