From 7e8784c075b5e56abf44d0eb0c2e357be8342ca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= <jfd@butonic.de> Date: Thu, 12 Jun 2014 15:59:26 +0200 Subject: [PATCH] access admin settings result message correctly --- apps/files_sharing/js/settings-admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/js/settings-admin.js b/apps/files_sharing/js/settings-admin.js index fa9b236ea98..e22aa4b0c36 100644 --- a/apps/files_sharing/js/settings-admin.js +++ b/apps/files_sharing/js/settings-admin.js @@ -7,7 +7,7 @@ $(document).ready(function() { ).done(function( result ) { $( '#mailTemplateSettings textarea' ).val(result); }).fail(function( result ) { - OC.dialogs.alert(result.message, t('files_sharing', 'Could not load template')); + OC.dialogs.alert(result.responseJSON.message, t('files_sharing', 'Could not load template')); }); }; -- GitLab