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:
Diffstat (limited to 'core/Translate/Writer.php')
-rw-r--r--core/Translate/Writer.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Translate/Writer.php b/core/Translate/Writer.php
index 914914955e..4360b1ecbf 100644
--- a/core/Translate/Writer.php
+++ b/core/Translate/Writer.php
@@ -12,7 +12,7 @@
namespace Piwik\Translate;
use Exception;
-use Piwik\Common;
+use Piwik\Filesystem;
use Piwik\PluginsManager;
use Piwik\Translate\Filter\FilterAbstract;
use Piwik\Translate\Validate\ValidateAbstract;
@@ -249,7 +249,7 @@ class Writer
$path = $this->getTranslationPath();
- Common::mkdir(dirname($path));
+ Filesystem::mkdir(dirname($path));
return file_put_contents($path, $this->__toString());
}
@@ -270,7 +270,7 @@ class Writer
$path = $this->getTemporaryTranslationPath();
- Common::mkdir(dirname($path));
+ Filesystem::mkdir(dirname($path));
return file_put_contents($path, $this->__toString());
}