Skip to content

Commit fa894e5

Browse files
committed
closing missing bracket
1 parent fa45276 commit fa894e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/add/web/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@
7272

7373
// Check ftp password length
7474
if (empty($_SESSION['error_msg'])) {
75-
if (!empty($_POST['v_ftp_user']) {
75+
if (!empty($_POST['v_ftp_user'])) {
7676
$pw_len = strlen($_POST['v_ftp_password']);
7777
if ($pw_len < 6 ) $_SESSION['error_msg'] = _('Password is too short.',$error_msg);
7878
}
7979
}
8080

8181
// Check stats password length
8282
if (empty($_SESSION['error_msg'])) {
83-
if (!empty($_POST['v_stats_user']) {
83+
if (!empty($_POST['v_stats_user'])) {
8484
$pw_len = strlen($_POST['v_stats_password']);
8585
if ($pw_len < 6 ) $_SESSION['error_msg'] = _('Password is too short.',$error_msg);
8686
}

0 commit comments

Comments
 (0)