Update login to use two last error vars

First error date for the first error occured, last one for the last
error occured
This commit is contained in:
Clemens Schwaighofer
2014-09-01 15:13:25 +09:00
parent 96224d0d1e
commit dd4dc12ed4
4 changed files with 22 additions and 8 deletions

View File

@@ -124,9 +124,15 @@
"type" => "view",
"empty" => "0"
),
"login_error_date" => array (
"login_error_date_last" => array (
"output_name" => "Last login error",
"value" => $GLOBALS['login_error_date'],
"value" => $GLOBALS['login_error_date_liast'],
"type" => "view",
"empty" => "-"
),
"login_error_date_first" => array (
"output_name" => "First login error",
"value" => $GLOBALS['login_error_date_first'],
"type" => "view",
"empty" => "-"
),