Skip to content

Commit

Permalink
Fix #0010039: config_get in log_event
Browse files Browse the repository at this point in the history
  • Loading branch information
mantis committed Jan 15, 2009
1 parent 014db4b commit 7f168ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/logging_api.php
Expand Up @@ -44,7 +44,7 @@ function log_event( $p_level, $p_msg ) {
return;
}

$t_now = date( config_get( 'complete_date_format' ) );
$t_now = date( config_get_global( 'complete_date_format' ) );
$t_level = $g_log_levels[$p_level];

$t_plugin_event = '[' . $t_level . '] ' . $p_msg;
Expand Down

0 comments on commit 7f168ee

Please sign in to comment.