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:
authorJean Baptiste Noblot <noblot.jb@gmail.com>2020-03-04 15:55:53 +0300
committerGitHub <noreply@github.com>2020-03-04 15:55:53 +0300
commitcac7b9c0ba492c6c349fb502c1025c09bdcc22bb (patch)
treef3645d0ec697a67babae2b8a3a87a74e515dfc5a /plugins/CoreUpdater
parente6903d20d5f3e881550b8de53af4071901d682c7 (diff)
Fix double colon and case (#15655)
* Fix double semicolon * Fix case
Diffstat (limited to 'plugins/CoreUpdater')
-rw-r--r--plugins/CoreUpdater/SystemSettings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreUpdater/SystemSettings.php b/plugins/CoreUpdater/SystemSettings.php
index ba769ca3ac..b42ae603b1 100644
--- a/plugins/CoreUpdater/SystemSettings.php
+++ b/plugins/CoreUpdater/SystemSettings.php
@@ -80,7 +80,7 @@ class SystemSettings extends \Piwik\Settings\Plugin\SystemSettings
$field->validate = function ($channel) use ($releaseChannels) {
if (!$releaseChannels->isValidReleaseChannelId($channel)) {
throw new \Exception('Release channel is not valid');
- };
+ }
};
$field->inlineHelp = Piwik::translate('CoreAdminHome_DevelopmentProcess')