summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-03-25 17:00:50 +0100
committerGitHub <noreply@github.com>2019-03-25 17:00:50 +0100
commit3f4941e48aead48bacc7077e2819b492d1394778 (patch)
treec6b13bd28d6ac059abcd30837b67769b211c0159
parent736fbe78107e485052b7ef8f6e8808074acca41f (diff)
parentde22bd618c41ca2cfcbc499aca8b5cdb5a17aebd (diff)
downloadnextcloud-server-3f4941e48aead48bacc7077e2819b492d1394778.tar.gz
nextcloud-server-3f4941e48aead48bacc7077e2819b492d1394778.zip
Merge pull request #14838 from nextcloud/bugfix/noid/fix-placeholder
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 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);
}