cvs -z9 diff -u strings_english.txt (in directory D:\cvsroot\mantisbt\lang\) Index: strings_english.txt =================================================================== RCS file: /cvsroot/mantisbt/mantisbt/lang/strings_english.txt,v retrieving revision 1.204 diff -u -r1.204 strings_english.txt --- strings_english.txt 21 Aug 2004 13:52:18 -0000 1.204 +++ strings_english.txt 31 Aug 2004 20:09:49 -0000 @@ -76,6 +76,7 @@ $s_related_to = "related to"; $s_dependant_on = "parent of"; $s_blocks = "child of"; +$s_relation_to = 'relation to'; $s_new_bug = 'New Issue'; $s_bugnote_added = 'Note Added'; cvs -z9 diff -u constant_inc.php (in directory D:\cvsroot\mantisbt\core\) Index: constant_inc.php =================================================================== RCS file: /cvsroot/mantisbt/mantisbt/core/constant_inc.php,v retrieving revision 1.29 diff -u -r1.29 constant_inc.php --- constant_inc.php 27 Aug 2004 00:29:55 -0000 1.29 +++ constant_inc.php 31 Aug 2004 20:29:11 -0000 @@ -145,6 +145,7 @@ define( 'BUG_DEPENDANT', 2 ); define( 'BUG_BLOCKS', 3 ); define( 'BUG_HAS_DUPLICATE', 4 ); + define( 'BUG_DEL_RELATIONSHIP', 9 ); # error messages define( 'ERROR_GENERIC', 0 ); cvs -z9 diff -u history_api.php (in directory D:\cvsroot\mantisbt\core\) Index: history_api.php =================================================================== RCS file: /cvsroot/mantisbt/mantisbt/core/history_api.php,v retrieving revision 1.28 diff -u -r1.28 history_api.php --- history_api.php 17 Aug 2004 18:01:18 -0000 1.28 +++ history_api.php 31 Aug 2004 20:29:51 -0000 @@ -307,7 +307,7 @@ break; case BUG_DEL_RELATIONSHIP: $t_note = lang_get( 'relationship_deleted' ); - $t_change = relationship_get_description_for_history( $p_old_value ) . ' ' . bug_format_id( $p_new_value ); + $t_change = relationship_get_description_for_history( BUG_DEL_RELATIONSHIP ) . ' ' . bug_format_id( $p_new_value ); break; case BUG_CLONED_TO: $t_note = lang_get( 'bug_cloned_to' ); cvs -z9 diff -u relationship_api.php (in directory D:\cvsroot\mantisbt\core\) Index: relationship_api.php =================================================================== RCS file: /cvsroot/mantisbt/mantisbt/core/relationship_api.php,v retrieving revision 1.20 diff -u -r1.20 relationship_api.php --- relationship_api.php 17 Aug 2004 18:01:19 -0000 1.20 +++ relationship_api.php 31 Aug 2004 20:29:58 -0000 @@ -351,6 +351,9 @@ case BUG_RELATED: return lang_get( 'related_to' ) ; break; + case BUG_DEL_RELATIONSHIP: + return lang_get( 'relation_to' ); + break; default: trigger_error( ERROR_RELATIONSHIP_NOT_FOUND, ERROR ); }