File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 2020 // Protect input
2121 $ v_domain = preg_replace ("/^www./i " , "" , $ _POST ['v_domain ' ]);
2222 $ v_domain = escapeshellarg ($ v_domain );
23+ $ v_domain = strtolower ($ v_domain );
2324 $ v_ip = escapeshellarg ($ _POST ['v_ip ' ]);
2425
2526 if (!empty ($ _POST ['v_ns1 ' ])) $ v_ns1 = escapeshellarg ($ _POST ['v_ns1 ' ]);
Original file line number Diff line number Diff line change 3838 // Protect input
3939 $ v_domain = preg_replace ("/^www./i " , "" , $ _POST ['v_domain ' ]);
4040 $ v_domain = escapeshellarg ($ v_domain );
41+ $ v_domain = strtolower ($ v_domain );
4142
4243 // Check for errors
4344 if (!empty ($ errors [0 ])) {
7778
7879 // Protect input
7980 $ v_domain = escapeshellarg ($ _POST ['v_domain ' ]);
81+ $ v_domain = strtolower ($ v_domain );
8082 $ v_account = escapeshellarg ($ _POST ['v_account ' ]);
8183 $ v_password = escapeshellarg ($ _POST ['v_password ' ]);
8284 $ v_quota = escapeshellarg ($ _POST ['v_quota ' ]);
Original file line number Diff line number Diff line change 3636 // Protect input
3737 $ v_domain = preg_replace ("/^www./i " , "" , $ _POST ['v_domain ' ]);
3838 $ v_domain = escapeshellarg ($ v_domain );
39+ $ v_domain = strtolower ($ v_domain );
3940 $ v_ip = escapeshellarg ($ _POST ['v_ip ' ]);
4041 if (empty ($ _POST ['v_dns ' ])) $ v_dns = 'off ' ;
4142 if (empty ($ _POST ['v_mail ' ])) $ v_mail = 'off ' ;
You can’t perform that action at this time.
0 commit comments