Skip to content

Commit

Permalink
Merge pull request #14838 from nextcloud/bugfix/noid/fix-placeholder
Browse files Browse the repository at this point in the history
Fix placeholder in disable message
  • Loading branch information
rullzer authored Mar 25, 2019
2 parents 736fbe7 + de22bd6 commit 3f4941e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/base.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ private static function printUpgradePage(\OC\SystemConfig $systemConfig) {

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);
}

Expand Down

0 comments on commit 3f4941e

Please sign in to comment.