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:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-03-26 09:50:38 +0300
committerGitHub <noreply@github.com>2019-03-26 09:50:38 +0300
commit280bf92f4c2c638b4428b8f06e8c3422a405d272 (patch)
tree2d39f4accec5cddb5f44ac3aca21e3bc4118f2ca
parent085741a795b1f5bb6dfe3ffb2b393c20d953c199 (diff)
parentd19355b25a5e83a60dfde9dcee64a57606a6516b (diff)
Merge pull request #14840 from nextcloud/backport/14838/stable15
[stable15] Fix placeholder in disable message
-rw-r--r--lib/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 90fa5496200..641a3929843 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);
}