diff -r a2b20a832447 -r 01955bf53f96 plugins/admin/SecurityLog.php --- a/plugins/admin/SecurityLog.php Sat Sep 08 15:06:28 2007 -0400 +++ b/plugins/admin/SecurityLog.php Sat Sep 08 22:58:38 2007 -0400 @@ -152,6 +152,10 @@ case "plugin_disable": $return .= "Disabled plugin: {$r['page_text']}"; break; case "plugin_enable": $return .= "Enabled plugin: {$r['page_text']}"; break; case "seclog_unauth": $return .= "Unauthorized attempt to call security log fetcher"; break; + case "u_from_admin": $return .= "User {$r['page_text']} demoted from Administrators group"; break; + case "u_from_mod": $return .= "User {$r['page_text']} demoted from Moderators group"; break; + case "u_to_admin": $return .= "User {$r['page_text']} added to Administrators group"; break; + case "u_to_mod": $return .= "User {$r['page_text']} added to Moderators group"; break; } $return .= ''.date('d M Y h:i a', $r['time_id']).''.$r['author'].''.$r['edit_summary'].''; return $return;