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
path: root/libs
diff options
context:
space:
mode:
authorFabian Becker <fabian.becker@uni-tuebingen.de>2013-07-18 13:45:02 +0400
committerFabian Becker <fabian.becker@uni-tuebingen.de>2013-07-18 13:45:02 +0400
commit03b4953f008c1063e6d7166143ba844e8c6e89cc (patch)
tree7b9f0fef13d75417c551f813c98dba1a22f2fff3 /libs
parent9b2c0a7a450fff3b634f8119c8003ae1d20b97d0 (diff)
Refactor class Piwik_Common to \Piwik\Core\Common
Notice that auto refactoring has created a nested namespace. Not sure this is what we want - so we might have to edit those nested namespaces afterwards (I think they don't look so good)
Diffstat (limited to 'libs')
-rw-r--r--libs/upgradephp/upgrade.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/upgradephp/upgrade.php b/libs/upgradephp/upgrade.php
index e553110d36..19df79a6f6 100644
--- a/libs/upgradephp/upgrade.php
+++ b/libs/upgradephp/upgrade.php
@@ -35,7 +35,7 @@
* Any contribution is appreciated. <milky*users#sf#net>
*
*/
-use Piwik\Core\Piwik_Common;
+use Piwik\Core\Common;
/**
* @since PHP 5
@@ -996,7 +996,7 @@ function _readfile($filename, $useIncludePath = false, $context = null)
}
// when in doubt (or when readfile() function is disabled)
- $handle = @fopen($filename, Piwik_Common::isWindows() ? "rb" : "r");
+ $handle = @fopen($filename, Common::isWindows() ? "rb" : "r");
if ($handle) {
while(!feof($handle)) {
echo fread($handle, 8192);