From ee7bd20c3a1cf1ba0d5327a2c0b5559f6842ce5e Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Sun, 12 Feb 2017 16:16:08 -0800 Subject: [PATCH] Fix time tracking without notes Fixes #22326 --- bugnote_add.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugnote_add.php b/bugnote_add.php index f6ac21b61f..b6fc9a19a2 100644 --- a/bugnote_add.php +++ b/bugnote_add.php @@ -95,7 +95,7 @@ $t_file_infos = array(); } -if( is_blank( $f_bugnote_text ) ) { +if( is_blank( $f_bugnote_text ) && helper_duration_to_minutes( $f_time_tracking ) == 0 ) { if( $f_files === null ) { error_parameters( lang_get( 'bugnote' ) ); trigger_error( ERROR_EMPTY_FIELD, ERROR );