File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ validate_format_domain_alias() {
636636
637637# Database
638638validate_format_database () {
639- exclude=" [!|@|#|$|^|&|*|(|)|+|=|{|}|:|,|.| <|>|?|/|\|\" |'|;|%|\` | ]"
639+ exclude=" [!|@|#|$|^|&|*|(|)|+|=|{|}|:|,|<|>|?|/|\|\" |'|;|%|\` | ]"
640640 if [[ " $1 " =~ $exclude ]] || [ 65 -le ${# 1} ]; then
641641 echo " Error: $2 $1 is not valid"
642642 log_event " $E_INVALID " " $EVENT "
@@ -646,7 +646,7 @@ validate_format_database() {
646646
647647# Database user
648648validate_format_dbuser () {
649- exclude=" [!|@|#|$|^|&|*|(|)|+|=|{|}|:|,|.| <|>|?|/|\|\" |'|;|%|\` | ]"
649+ exclude=" [!|@|#|$|^|&|*|(|)|+|=|{|}|:|,|<|>|?|/|\|\" |'|;|%|\` | ]"
650650 if [[ " $1 " =~ $exclude ]] || [ 17 -le ${# 1} ]; then
651651 echo " Error: $2 $1 is not valid"
652652 log_event " $E_INVALID " " $EVENT "
You can’t perform that action at this time.
0 commit comments