]> source.dussan.org Git - nextcloud-server.git/commitdiff
some more invalid characters have been added
authorThomas Mueller <thomas.mueller@tmit.eu>
Thu, 22 Nov 2012 10:22:16 +0000 (11:22 +0100)
committerJörn Friedrich Dreyer <jfd@butonic.de>
Thu, 22 Nov 2012 10:52:05 +0000 (11:52 +0100)
apps/files/js/files.js

index b8972bed6b83f8fd3fa2293248e4e9784d5709f3..8d0f9e06ad7ef1909859424d0eaad820ac832c2d 100644 (file)
@@ -505,12 +505,17 @@ $(document).ready(function() {
                $(this).append(input);
                input.focus();
                input.change(function(){
-                       if(type != 'web' && ($(this).val().indexOf('/')!=-1 || $(this).val().indexOf('\\')!=-1)) {
-                               $('#notification').text(t('files', 'Invalid name, \'/\' or \'\\\' is not allowed.'));
-                               $('#notification').fadeIn();
-                               return;
-                       }
-                       var name = getUniqueName($(this).val());
+            if (type != 'web') {
+                var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*'];
+                for (var i = 0; i < invalid_characters.length; i++) {
+                    if ($(this).val().indexOf(invalid_characters[i]) != -1) {
+                        $('#notification').text(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
+                        $('#notification').fadeIn();
+                        return;
+                    }
+                }
+            }
+            var name = getUniqueName($(this).val());
                        if (name != $(this).val()) {
                                FileList.checkName(name, $(this).val(), true);
                                var hidden = true;