Skip to content

Commit e3a2dad

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

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
@@ -652,7 +652,7 @@ function bugnote_stats_get_project_array( $p_project_id, $p_from, $p_to, $p_cost
652652
$c_from = strtotime( $p_from );
653653

654654
if ( $c_to === false || $c_from === false ) {
655-
error_parameters( array( $p_form, $p_to ) );
655+
error_parameters( array( $p_from, $p_to ) );
656656
trigger_error( ERROR_GENERIC, ERROR );
657657
}
658658

0 commit comments

Comments
 (0)
Please sign in to comment.