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/Diagnostics
parente6903d20d5f3e881550b8de53af4071901d682c7 (diff)
Fix double colon and case (#15655)
* Fix double semicolon * Fix case
Diffstat (limited to 'plugins/Diagnostics')
-rw-r--r--plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php b/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php
index 7ce15e6350..e226644985 100644
--- a/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php
+++ b/plugins/Diagnostics/Diagnostic/CronArchivingLastRunCheck.php
@@ -59,7 +59,7 @@ class CronArchivingLastRunCheck implements Diagnostic
if (empty($lastRunTime)) {
$comment = $this->translator->translate('Diagnostics_CronArchivingHasNotRun')
. '<br/><br/>' . $this->translator->translate('Diagnostics_CronArchivingRunDetails',
- [$coreArchiveShort, $mailto, $commandToRerun, '<a href="https://matomo.org/docs/setup-auto-archiving/" target="_blank" rel="noreferrer noopener">', '</a>']);;
+ [$coreArchiveShort, $mailto, $commandToRerun, '<a href="https://matomo.org/docs/setup-auto-archiving/" target="_blank" rel="noreferrer noopener">', '</a>']);
return [DiagnosticResult::singleResult($label, DiagnosticResult::STATUS_ERROR, $comment)];
}