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>2013-12-27 14:26:00 +0400
committermattab <matthieu.aubry@gmail.com>2013-12-27 14:26:00 +0400
commit648d48980cd7799b27a2f25e2465b7643aaa7c26 (patch)
treedef7932e59eed266d5160488e6bc1c2e43ca83bb
parent5f061b635e7404f80923c534d1017f43e4b6bfa6 (diff)
Fix typo
-rw-r--r--core/Theme.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Theme.php b/core/Theme.php
index 9e1d694964..5b376f9032 100644
--- a/core/Theme.php
+++ b/core/Theme.php
@@ -133,7 +133,7 @@ class Theme
// Strip trailing query string
$fileToCheck = $overridingAsset;
$queryStringPos = strpos($fileToCheck, '?');
- if( $queryStringPos !== 0) {
+ if( $queryStringPos !== false) {
$fileToCheck = substr($fileToCheck, 0, $queryStringPos);
}