Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b2c5f55

Browse files
committedApr 16, 2012
Fix #14105: Access to undefined variable in bugnote_api.php
1 parent d17970b commit b2c5f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/bugnote_api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ function bugnote_stats_get_project_array( $p_project_id, $p_from, $p_to, $p_cost
642642
$c_from = strtotime( $p_from );
643643

644644
if ( $c_to === false || $c_from === false ) {
645-
error_parameters( array( $p_form, $p_to ) );
645+
error_parameters( array( $p_from, $p_to ) );
646646
trigger_error( ERROR_GENERIC, ERROR );
647647
}
648648

0 commit comments

Comments
 (0)
Please sign in to comment.