summaryrefslogtreecommitdiff
path: root/it_url.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_url.class')
-rw-r--r--it_url.class2
1 files changed, 1 insertions, 1 deletions
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";
}