Skip to content

Commit

Permalink
Fixed #7953: Time Tracking assigment lost, when changing issue status…
Browse files Browse the repository at this point in the history
… without note text.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/branches/BRANCH_1_1_0@4650 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Oct 19, 2007
1 parent fa0fd76 commit ab9b690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bug_update.php
Expand Up @@ -18,7 +18,7 @@
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.

# --------------------------------------------------------
# $Id: bug_update.php,v 1.91.2.1 2007-10-13 22:32:56 giallu Exp $
# $Id: bug_update.php,v 1.91.2.2 2007-10-19 07:02:45 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -190,7 +190,7 @@
}

# Add a bugnote if there is one
if ( ( !is_blank( $f_bugnote_text ) ) && ( false == $t_bug_note_set ) ) {
if ( ( !is_blank( $f_bugnote_text ) || !is_blank( $f_time_tracking ) ) && ( false == $t_bug_note_set ) ) {
bugnote_add( $f_bug_id, $f_bugnote_text, $f_time_tracking, $f_private );
}

Expand Down

0 comments on commit ab9b690

Please sign in to comment.