MyBB Community Forums

Full Version: Log into mod log
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a file that runs a mysql query, it runs am irreversible mod action, how can I log the actions for the mod log? It's a php file, I have global.php included 
Use the log_moderator_action function. The whole function can be found in the inc/functions.php file.

/**
 * Log the actions of a moderator.
 *
 * @param array The data of the moderator's action.
 * @param string The message to enter for the action the moderator performed.
 */
function log_moderator_action($data, $action="")
What needs to be passed in the data array?
(2014-08-19, 10:23 AM)Robust Wrote: [ -> ]What needs to be passed in the data array?

https://github.com/mybb/mybb/blob/master....php#L2875
Perfect, thanks to both of you.