Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-03-25 18:04:39 +0300
committerJoas Schilling <coding@schilljs.com>2019-03-25 18:04:39 +0300
commitde22bd618c41ca2cfcbc499aca8b5cdb5a17aebd (patch)
tree8d445b270e6b51fcb2116eeec1959e68121eb17f /lib/base.php
parent4a1cf54f992081f881a2d162ec6ac2de539fab9f (diff)
Fix placeholder in disable message
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index d575c970d28..735bb8b7725 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -388,7 +388,7 @@ class OC {
if (!empty($incompatibleShippedApps)) {
$l = \OC::$server->getL10N('core');
- $hint = $l->t('The files of the app %$1s were not replaced correctly. Make sure it is a version compatible with the server.', [implode(', ', $incompatibleShippedApps)]);
+ $hint = $l->t('The files of the app %1$s were not replaced correctly. Make sure it is a version compatible with the server.', [implode(', ', $incompatibleShippedApps)]);
throw new \OC\HintException('The files of the app ' . implode(', ', $incompatibleShippedApps) . ' were not replaced correctly. Make sure it is a version compatible with the server.', $hint);
}