Bimon
2011-09-27 ced7398e3c567bd50ec217e176b8dbabdd601f9c
line 117 " && $user['active']" removed
reason: not necessary here, check is in line 141, when checking in line 117 and setting $user to false user blocked message will never show
1 files modified
2 ■■■ changed files
interface/web/login/index.php 2 ●●● patch | view | raw | blame | history
interface/web/login/index.php
@@ -114,7 +114,7 @@
                        $sql = "SELECT * FROM sys_user WHERE USERNAME = '$username'";
                        $user = $app->db->queryOneRecord($sql);
                        if($user && $user['active'] == 1) {
                        if($user) {
                            
                            $saved_password = stripslashes($user['passwort']);