write to a slower master.
* Fix a few more bugs
* Add a failed logins page, to show the most recent failed logins.
+* Fix a bug in the failed logins page
Ver 1.55:
* Update the FAQ about missing attributes from the user/group edit pages and add a few comments
in the configuration files
"SELECT AcctStartTime,UserName,NASIPAddress,NASPortId,AcctTerminateCause,CallingStationId
FROM $config[sql_accounting_table]
WHERE AcctStartTime <= '$now_str' AND AcctStartTime >= '$prev_str'
- AND AcctTerminateCause LIKE 'Login-Incorrect%' OR
+ AND (AcctTerminateCause LIKE 'Login-Incorrect%' OR
AcctTerminateCause LIKE 'Invalid-User%' OR
- AcctTerminateCause LIKE 'Multiple-Logins%' $callerid_str
+ AcctTerminateCause LIKE 'Multiple-Logins%') $callerid_str
ORDER BY AcctStartTime $order $limit;");
if ($search){
while( $row = @da_sql_fetch_array($search,$config) ){