We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa45276 commit fa894e5Copy full SHA for fa894e5
web/add/web/index.php
@@ -72,15 +72,15 @@
72
73
// Check ftp password length
74
if (empty($_SESSION['error_msg'])) {
75
- if (!empty($_POST['v_ftp_user']) {
+ if (!empty($_POST['v_ftp_user'])) {
76
$pw_len = strlen($_POST['v_ftp_password']);
77
if ($pw_len < 6 ) $_SESSION['error_msg'] = _('Password is too short.',$error_msg);
78
}
79
80
81
// Check stats password length
82
83
- if (!empty($_POST['v_stats_user']) {
+ if (!empty($_POST['v_stats_user'])) {
84
$pw_len = strlen($_POST['v_stats_password']);
85
86
0 commit comments