Skip to content

Commit

Permalink
Incorrectly passed bug id string to event.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Mar 5, 2009
1 parent e9e4908 commit 7df327d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/bug_api.php
Expand Up @@ -1784,7 +1784,7 @@ function bug_format_id( $p_bug_id ) {
$t_padding = config_get( 'display_bug_padding' );
$t_string = str_pad( $p_bug_id, $t_padding, '0', STR_PAD_LEFT );

return event_signal( 'EVENT_DISPLAY_BUG_ID', array( $t_string ), array( $p_bug_id ) );
return event_signal( 'EVENT_DISPLAY_BUG_ID', $t_string, array( $p_bug_id ) );
}

/**
Expand Down

0 comments on commit 7df327d

Please sign in to comment.