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:
authorThomas Steur <thomas.steur@gmail.com>2015-01-21 01:46:20 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-01-21 01:46:20 +0300
commit30d45911d7192a7448d02e50fadca5d8c71002b4 (patch)
tree52da644e009e165853d43f86789d220e6d32df0d /tests/LocalTracker.php
parentd3a4be4bde6ee39582a5bba21ca629ddb27ee84e (diff)
a few bug fixes eg Metics was already defined in Namespace and debug_append_url was ignored in localtracker
Diffstat (limited to 'tests/LocalTracker.php')
-rwxr-xr-xtests/LocalTracker.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/LocalTracker.php b/tests/LocalTracker.php
index 98ef3e6501..6e251e6d21 100755
--- a/tests/LocalTracker.php
+++ b/tests/LocalTracker.php
@@ -21,6 +21,10 @@ class Piwik_LocalTracker extends PiwikTracker
{
protected function sendRequest($url, $method = 'GET', $data = null, $force = false)
{
+ if ($this->DEBUG_APPEND_URL) {
+ $url .= $this->DEBUG_APPEND_URL;
+ }
+
// if doing a bulk request, store the url
if ($this->doBulkRequests && !$force) {
$this->storedTrackingActions[] = $url;