diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-16 13:37:07 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-16 13:37:07 +0100 |
commit | d5226c88ac10e5715fc4777dff0ef7a461e34e1e (patch) | |
tree | 4c05c523a4b7ca9b793391b1499239e5e06c9fed /tests | |
parent | 3e8b025f2f4c830d7ec171e8f08c404fbdcde5e6 (diff) | |
parent | 759b19775debc7dd3427267a6d711acf434d24fb (diff) | |
download | nextcloud-server-d5226c88ac10e5715fc4777dff0ef7a461e34e1e.tar.gz nextcloud-server-d5226c88ac10e5715fc4777dff0ef7a461e34e1e.zip |
Merge pull request #22338 from owncloud/fix_22247
Allow more characters in filenames
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/util.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php index 7880d56f63b..4d788353881 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -214,13 +214,13 @@ class Test_Util extends \Test\TestCase { array('..', false), array('back\\slash', false), array('sl/ash', false), - array('lt<lt', false), - array('gt>gt', false), - array('col:on', false), - array('double"quote', false), - array('pi|pe', false), - array('dont?ask?questions?', false), - array('super*star', false), + array('lt<lt', true), + array('gt>gt', true), + array('col:on', true), + array('double"quote', true), + array('pi|pe', true), + array('dont?ask?questions?', true), + array('super*star', true), array('new\nline', false), // better disallow these to avoid unexpected trimming to have side effects array(' ..', false), |