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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-03-11 07:12:30 +0400
committermattab <matthieu.aubry@gmail.com>2014-03-11 07:12:30 +0400
commit301129f6e1d03ce57a215f119d7ce46963a6167a (patch)
tree2d5cd70bc43c81b3d7698fdf755659b2603f9a1e /core/Tracker.php
parentf256ec7f5ccccf7351ccedec01a3ae0cfcb5eb7f (diff)
Using SettingsPiwik::getPiwikUrl() instead of getCurrentUrlWithoutFileName() when possible
Diffstat (limited to 'core/Tracker.php')
-rw-r--r--core/Tracker.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker.php b/core/Tracker.php
index 5b3c0c84ef..7c790f0934 100644
--- a/core/Tracker.php
+++ b/core/Tracker.php
@@ -330,7 +330,7 @@ class Tracker
Translate::loadEnglishTranslation();
ob_start();
- CronArchive::$url = Common::sanitizeInputValue(Url::getCurrentUrlWithoutFileName());
+ CronArchive::$url = SettingsPiwik::getPiwikUrl();
$cronArchive = new CronArchive();
$cronArchive->runScheduledTasksInTrackerMode();