ソースを参照

Fix placeholder in disable message

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v16.0.0beta2
Joas Schilling 5年前
コミット
de22bd618c
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      lib/base.php

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


読み込み中…
キャンセル
保存