diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-11 20:38:27 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-11 20:38:27 +0200 |
commit | 6343391e580b0a686f2b2ee2b0b43ca675473be8 (patch) | |
tree | 6d2c46146680747568ce1916a6e42a32246ab458 | |
parent | e704bc2bf01e8db49634bd1ec9b9dbd11afc246d (diff) | |
download | nextcloud-server-6343391e580b0a686f2b2ee2b0b43ca675473be8.tar.gz nextcloud-server-6343391e580b0a686f2b2ee2b0b43ca675473be8.zip |
Change from showHTML to show
There is no need to use `showHTML` here.
-rw-r--r-- | apps/files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ac10191618b..9f38263bef3 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -135,7 +135,7 @@ var Files = { return; } if (initStatus === '1') { // encryption tried to init but failed - OC.Notification.showHtml(t('files', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); + OC.Notification.show(t('files', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); return; } if (encryptedFiles === '1') { |