Allow periods in slugs

This commit is contained in:
Michael Snoyman 2014-12-14 09:59:25 +02:00
parent 5b9cb8ba14
commit 2878ef3aa6

View File

@ -48,6 +48,7 @@ validChar c =
('A' <= c && c <= 'Z') ||
('a' <= c && c <= 'z') ||
('0' <= c && c <= '9') ||
c == '.' ||
c == '-' ||
c == '_'