Skip to content

Commit

Permalink
Fix #14105: Access to undefined variable in bugnote_api.php
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Apr 16, 2012
1 parent d17970b commit b2c5f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/bugnote_api.php
Expand Up @@ -642,7 +642,7 @@ function bugnote_stats_get_project_array( $p_project_id, $p_from, $p_to, $p_cost
$c_from = strtotime( $p_from );

if ( $c_to === false || $c_from === false ) {
error_parameters( array( $p_form, $p_to ) );
error_parameters( array( $p_from, $p_to ) );
trigger_error( ERROR_GENERIC, ERROR );
}

Expand Down

0 comments on commit b2c5f55

Please sign in to comment.