We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 449a9fb commit b972002Copy full SHA for b972002
1 file changed
func/main.sh
@@ -636,7 +636,7 @@ validate_format_domain_alias() {
636
637
# Database
638
validate_format_database() {
639
- exclude="[!|@|#|$|^|&|*|(|)|+|=|{|}|:|,|.|<|>|?|/|\|\"|'|;|%|\`| ]"
+ exclude="[!|@|#|$|^|&|*|(|)|+|=|{|}|:|,|<|>|?|/|\|\"|'|;|%|\`| ]"
640
if [[ "$1" =~ $exclude ]] || [ 65 -le ${#1} ]; then
641
echo "Error: $2 $1 is not valid"
642
log_event "$E_INVALID" "$EVENT"
@@ -646,7 +646,7 @@ validate_format_database() {
646
647
# Database user
648
validate_format_dbuser() {
649
650
if [[ "$1" =~ $exclude ]] || [ 17 -le ${#1} ]; then
651
652
0 commit comments