Allow spaces in password fields

Fixes #2732
This commit is contained in:
emanuele-f 2019-08-01 11:11:40 +02:00
parent 560199b825
commit ba91b62f0a
2 changed files with 2 additions and 2 deletions

View file

@ -208,7 +208,7 @@ end
local function validatePassword(p)
-- A password (e.g. used in ntopng authentication)
return validateSingleWord(p)
return validateUnquoted(p)
end
local function validateAbsolutePath(p)