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:
authordiosmosis <benaka@piwik.pro>2014-11-18 14:31:34 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-18 14:31:34 +0300
commit0fb08ead18a326610ac48bfdda0693f6f26603da (patch)
treeda198d3e39dfe566ccb9d679769a8abd8f6f43c5 /tests/PHPUnit/Framework/TestRequest
parent1f5cff9ff9eb0f53b5baca7907217b9fa45dc19d (diff)
Fix failed revert of php 5.3.3 test hack.
Diffstat (limited to 'tests/PHPUnit/Framework/TestRequest')
-rw-r--r--tests/PHPUnit/Framework/TestRequest/Response.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Framework/TestRequest/Response.php b/tests/PHPUnit/Framework/TestRequest/Response.php
index 7266e35f16..3d0b1622d4 100644
--- a/tests/PHPUnit/Framework/TestRequest/Response.php
+++ b/tests/PHPUnit/Framework/TestRequest/Response.php
@@ -127,7 +127,7 @@ class Response
|| strpos($apiResponse, '<result') === false) {
return $apiResponse;
}
- return str_replace("'", '&amp;#039;', $apiResponse);
+ return str_replace('&amp;#039;', "'", $apiResponse);
}
private function removeIdSubtableParamFromUrlsInResponse($apiResponse)