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-01-07 04:04:04 +0400
committermattab <matthieu.aubry@gmail.com>2014-01-07 04:04:04 +0400
commit2fcce5f3555002747d87b60f7fe0e005f01ee20e (patch)
treefed98321b164faaf7209e518cbbe083b7b2542b5 /core/Filechecks.php
parentadb16dff93ce1cf6d872d913cecad80914cfa5a6 (diff)
Making class_exists calls consistently use \\
Diffstat (limited to 'core/Filechecks.php')
-rw-r--r--core/Filechecks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Filechecks.php b/core/Filechecks.php
index 345ff14c6b..8d63c7fbf9 100644
--- a/core/Filechecks.php
+++ b/core/Filechecks.php
@@ -120,7 +120,7 @@ class Filechecks
require_once $manifest;
}
- if (!class_exists('\\Piwik\\Manifest')) {
+ if (!class_exists('Piwik\\Manifest')) {
$git = SettingsPiwik::getCurrentGitBranch();
if(empty($git)) {
$messages[] = Piwik::translate('General_WarningFileIntegrityNoManifest') . " If you are deploying Piwik from Git, this message is normal.";