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 3b4c288 commit de67926Copy full SHA for de67926
interface/web/login/index.php
@@ -176,11 +176,15 @@ public function render() {
176
//* Incorrect login - Username and password incorrect
177
$error = $app->lng('error_user_password_incorrect');
178
if($app->db->errorMessage != '') $error .= '<br />'.$app->db->errorMessage != '';
179
+
180
+ $app->plugin->raiseEvent('login_failed',$this);
181
}
182
183
} else {
184
//* Username or password empty
185
if($error == '') $error = $app->lng('error_user_password_empty');
186
187
+ $app->plugin->raiseEvent('login_empty',$this);
188
189
190
if($error != ''){
0 commit comments