Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-24 00:45:27 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-24 00:45:27 +0400
commit535bc7b6641eb56eae7ec8a5fd20ad092ed05f44 (patch)
tree4776bdbf7a994593920c611830d99e0fe5af9a6c /core
parent291cdbdd989a50b17013396662241828ce691cb6 (diff)
parent4991a7bd06e226850391cf9aef6fa6daaee57a9d (diff)
Merge pull request #5477 from owncloud/prevent_user_from_creating_or_renaming_to_an_existing_filename
prevent user from creating or renaming sth. to an existing filename
Diffstat (limited to 'core')
-rw-r--r--core/js/js.js2
-rw-r--r--core/js/octemplate.js2
-rw-r--r--core/templates/message.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/core/js/js.js b/core/js/js.js
index c17e3fa2959..f5991cfc9dd 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -933,7 +933,7 @@ jQuery.fn.selectRange = function(start, end) {
*/
jQuery.fn.exists = function(){
return this.length > 0;
-}
+};
/**
* Calls the server periodically every 15 mins to ensure that session doesnt
diff --git a/core/js/octemplate.js b/core/js/octemplate.js
index 46ffa976574..aab705059d2 100644
--- a/core/js/octemplate.js
+++ b/core/js/octemplate.js
@@ -82,7 +82,7 @@
}
);
} catch(e) {
- console.error(e, 'data:', data)
+ console.error(e, 'data:', data);
}
},
options: {
diff --git a/core/templates/message.html b/core/templates/message.html
index 59048100f32..cd642231a9e 100644
--- a/core/templates/message.html
+++ b/core/templates/message.html
@@ -1,3 +1,3 @@
-<div id="{dialog_name}" title="{title}">
+<div id="{dialog_name}" title="{title} "><!-- the ' ' after {title} fixes ie8, see http://stackoverflow.com/a/5313137/828717 -->
<p><span class="ui-icon ui-icon-{type}"></span>{message}</p>
</div>