diff options
| author | rr- | 2016-07-05 23:40:48 +0200 |
|---|---|---|
| committer | rr- | 2016-07-05 23:59:10 +0200 |
| commit | 0d9c2b7cc88a6ec79d37ed21ddef6464860cdb84 (patch) | |
| tree | c0a2bef58426343bddbffdf26d30ba02f67f807d | |
| parent | abd8e9e89c353773dddec81aed82b3b5536f621b (diff) | |
server/tags: fix tag names allowing whitespace
| -rw-r--r-- | config.yaml.dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.yaml.dist b/config.yaml.dist index 7a3cd6c..b0b33ec 100644 --- a/config.yaml.dist +++ b/config.yaml.dist @@ -37,8 +37,8 @@ limits: posts_per_page: 40 max_comment_length: 5000 -tag_name_regex: ^[^%+#/]+$ -tag_category_name_regex: ^[^%+#/]+$ +tag_name_regex: ^[^\s%+#/]+$ +tag_category_name_regex: ^[^\s%+#/]+$ default_rank: regular |