diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-11 21:11:35 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-09-11 21:11:35 +0200 |
commit | 1f8f0e61d89036e9c51befbd88404cbe9af6e664 (patch) | |
tree | 5dba40c639064742b2d5b28fecfa5bf915303426 /core/js/oc-dialogs.js | |
parent | 799c5c2c9b3fdfd4c4d407e352c9dff494d86cc0 (diff) | |
download | nextcloud-server-1f8f0e61d89036e9c51befbd88404cbe9af6e664.tar.gz nextcloud-server-1f8f0e61d89036e9c51befbd88404cbe9af6e664.zip |
Remove test error :P
Diffstat (limited to 'core/js/oc-dialogs.js')
-rw-r--r-- | core/js/oc-dialogs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index a3516f866d1..26173ffeb69 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -243,7 +243,7 @@ var OCdialogs = { var defer = $.Deferred(); if(!this.$messageTemplate) { var self = this; - $.get(OC.filePath('core', 'templates', 'message.htm'), function(tmpl) { + $.get(OC.filePath('core', 'templates', 'message.html'), function(tmpl) { self.$messageTemplate = $(tmpl); defer.resolve(self.$messageTemplate); }) |