diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-26 20:40:12 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-26 20:40:12 +0200 |
commit | 54c421f384cc53ea9f10ee2eea255b6bfdfcc835 (patch) | |
tree | 5063abf82c282e284dab7f0e09b5b8766b97e19a /settings/js/apps.js | |
parent | 1645f77aadc0c2f3271175516b2615aab89bea56 (diff) | |
download | nextcloud-server-54c421f384cc53ea9f10ee2eea255b6bfdfcc835.tar.gz nextcloud-server-54c421f384cc53ea9f10ee2eea255b6bfdfcc835.zip |
check during ownCloud upgrade if all the installed apps are compatible with the new ownCloud version. Disable them if not
Diffstat (limited to 'settings/js/apps.js')
-rw-r--r-- | settings/js/apps.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js index 8aa54463b3b..f6e08b608bd 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -41,7 +41,7 @@ $(document).ready(function(){ if(active){ $.post(OC.filePath('settings','ajax','disableapp.php'),{appid:app},function(result){ if(!result || result.status!='success'){ - OC.dialogs.alert('Error','Error while disabling app'); + OC.dialogs.alert('Error while disabling app','Error'); } else { element.data('active',false); @@ -54,7 +54,7 @@ $(document).ready(function(){ }else{ $.post(OC.filePath('settings','ajax','enableapp.php'),{appid:app},function(result){ if(!result || result.status!='success'){ - OC.dialogs.alert('Error','Error while enabling app'); + OC.dialogs.alert('Error while enabling app','Error'); } else { element.data('active',true); |