# HG changeset patch # User tmolitor # Date 1494625291 -7200 # Node ID 9b43b7fc35582ef9f6165f57dace38bbfdc8697e # Parent 75b137cf869ab8c534c7803eda0e6dc86a671a06 mod_block_registrations: fix example regex diff -r 75b137cf869a -r 9b43b7fc3558 mod_block_registrations/README.markdown --- a/mod_block_registrations/README.markdown Mon May 08 19:39:43 2017 +0200 +++ b/mod_block_registrations/README.markdown Fri May 12 23:41:31 2017 +0200 @@ -31,7 +31,7 @@ block_registrations_matching = { "master$" -- matches anything ending with master: postmaster, hostmaster, webmaster, etc. } - block_registrations_require = "^[a-zA-Z0-9_-.]+$" -- Allow only simple ASCII characters in usernames + block_registrations_require = "^[a-zA-Z0-9_.-]+$" -- Allow only simple ASCII characters in usernames Compatibility =============