diff -r d966be8d79a3 -r 8626bb38410f plugins/admin/SecurityLog.php --- a/plugins/admin/SecurityLog.php Fri May 29 16:38:14 2009 -0400 +++ b/plugins/admin/SecurityLog.php Fri May 29 16:38:51 2009 -0400 @@ -39,7 +39,7 @@ $row = $db->fetchrow(); $db->free_result(); $count = intval($row['num']); - $q = $db->sql_unbuffered_query('SELECT action,date_string,author,edit_summary,time_id,page_text FROM '.table_prefix.'logs WHERE log_type=\'security\' ORDER BY time_id DESC, action ASC;'); + $q = $db->sql_query('SELECT action,date_string,author,edit_summary,time_id,page_text FROM '.table_prefix.'logs WHERE log_type=\'security\' ORDER BY time_id DESC, action ASC;'); if ( !$q ) $db->_die();