diff options
author | Christian Hesse <mail@eworm.de> | 2023-06-26 11:17:24 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-06-27 09:14:36 +0200 |
commit | 0502cf17c9ce5b32b35282ae599542801a9534a7 (patch) | |
tree | 58522a31471e5f188e9886acc3699e68e8e7f1e5 /mod | |
parent | a1b896a5d3174f888db7809c1950e79a533919b9 (diff) |
mod/scriptrunonce: escaping question mark is no longer required
Diffstat (limited to 'mod')
-rw-r--r-- | mod/scriptrunonce.rsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/scriptrunonce.rsc b/mod/scriptrunonce.rsc index 376e778..199d852 100644 --- a/mod/scriptrunonce.rsc +++ b/mod/scriptrunonce.rsc @@ -19,7 +19,7 @@ :global ValidateSyntax; :foreach Script in=$Scripts do={ - :if (!($Script ~ "^(ftp|https\?|sftp)://")) do={ + :if (!($Script ~ "^(ftp|https?|sftp)://")) do={ :if ([ :len $ScriptRunOnceBaseUrl ] = 0) do={ $LogPrintExit2 warning $0 ("Script '" . $Script . "' is not an url and base url is not available.") true; } |