Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sualko/cloud_piwik.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2019-03-04 13:05:24 +0300
committersualko <klaus@jsxc.org>2019-03-04 13:05:24 +0300
commitb2ba64b80975efeaab328b068109029188c293e7 (patch)
treebcb8179b6d787bce2ef8bfed0dc8b4cf3f49235a
parentfcf9e766fdb57ec1a96208f91916f1f39acfa233 (diff)
fix filename in meta data
-rw-r--r--lib/Controller/JavaScriptController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/JavaScriptController.php b/lib/Controller/JavaScriptController.php
index bc15c76..430f3dd 100644
--- a/lib/Controller/JavaScriptController.php
+++ b/lib/Controller/JavaScriptController.php
@@ -47,6 +47,6 @@ class JavaScriptController extends Controller
$script = file_get_contents(__DIR__ . '/../../js/track.js');
$script = str_replace('%OPTIONS%', json_encode($options), $script);
- return new DataDownloadResponse($script, 'script', 'text/javascript');
+ return new DataDownloadResponse($script, 'tracking.js', 'text/javascript');
}
}