Skip to content

Commit

Permalink
Fix #19400: core/bug_api.php, function create(): this_due_date
Browse files Browse the repository at this point in the history
Regression caused by 27213a2
  • Loading branch information
rombert committed Feb 26, 2015
1 parent 8864ef1 commit 884aebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/bug_api.php
Expand Up @@ -302,7 +302,7 @@ function create() {

# check due_date format
if( is_blank( $this->due_date ) ) {
$this_due_date = date_get_null();
$this->due_date = date_get_null();
}

$t_bug_table = db_get_table( 'mantis_bug_table' );
Expand Down

0 comments on commit 884aebb

Please sign in to comment.