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/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Translation/Translator.php2
-rw-r--r--core/Version.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/Translation/Translator.php b/core/Translation/Translator.php
index af2ae597f2..98b3759f3b 100644
--- a/core/Translation/Translator.php
+++ b/core/Translation/Translator.php
@@ -84,7 +84,7 @@ class Translator
}
if (count($args) == 0) {
- return $translationId;
+ return str_replace('%%', '%', $translationId);
}
return vsprintf($translationId, $args);
}
diff --git a/core/Version.php b/core/Version.php
index d7a1318045..ab4135b6b7 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -20,7 +20,7 @@ final class Version
* The current Piwik version.
* @var string
*/
- const VERSION = '3.0.0-b5';
+ const VERSION = '3.0.0-rc1';
public function isStableVersion($version)
{