mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
[fix] escape minus character to avoid interpretation as range
Fixes #36
This commit is contained in:
parent
bfd3cfdcab
commit
f5bd2dcc2b
1 changed files with 1 additions and 1 deletions
|
@ -595,7 +595,7 @@ function edit_user ()
|
||||||
|
|
||||||
local rex = require "rex_pcre"
|
local rex = require "rex_pcre"
|
||||||
local rex_flags = rex.flags()
|
local rex_flags = rex.flags()
|
||||||
local mail_re = rex.new([[^[\w\.-+%]+@([^\W_A-Z]+([\-]*[^\W_A-Z]+)*\.)+([^\W\d_]{2,})$]], rex_flags.UTF8 + rex_flags.UCP)
|
local mail_re = rex.new([[^[\w\.\-+%]+@([^\W_A-Z]+([\-]*[^\W_A-Z]+)*\.)+([^\W\d_]{2,})$]], rex_flags.UTF8 + rex_flags.UCP)
|
||||||
|
|
||||||
local mails = {}
|
local mails = {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue