Skip to content

Commit

Permalink
Fix due date check on bug change status page
Browse files Browse the repository at this point in the history
This is a regression from 5c4035b which updates the page's
layout to the 1.3 approach.  Left over debug code causes the
field to be always visible.
  • Loading branch information
vboctor committed Feb 13, 2016
1 parent 5bf4161 commit a57d77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bug_change_status_page.php
Expand Up @@ -235,7 +235,7 @@
<?php
}

if( true || $t_can_update_due_date ) {
if( $t_can_update_due_date ) {
$t_date_to_display = '';

if( !date_is_null( $t_bug->due_date ) ) {
Expand Down

0 comments on commit a57d77a

Please sign in to comment.