diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-03-25 17:00:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-25 17:00:50 +0100 |
commit | 3f4941e48aead48bacc7077e2819b492d1394778 (patch) | |
tree | c6b13bd28d6ac059abcd30837b67769b211c0159 | |
parent | 736fbe78107e485052b7ef8f6e8808074acca41f (diff) | |
parent | de22bd618c41ca2cfcbc499aca8b5cdb5a17aebd (diff) | |
download | nextcloud-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.php | 2 |
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); } |