Skip to content

Commit

Permalink
Fix #4122: Upgrade script seems to swap the duplicate relationship (m…
Browse files Browse the repository at this point in the history
…asc)

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2727 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Jul 18, 2004
1 parent 8719e4b commit 35cf1f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions admin/upgrades/0_18_inc.php
Expand Up @@ -8,7 +8,7 @@
# Changes applied to 0.18 database

# --------------------------------------------------------
# $Id: 0_18_inc.php,v 1.12 2004-07-15 21:51:16 vboctor Exp $
# $Id: 0_18_inc.php,v 1.13 2004-07-18 22:20:02 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -354,7 +354,7 @@ function upgrade_0_18_relationship_3() {
$query = "INSERT INTO $t_bug_relationship_table
( source_bug_id, destination_bug_id, relationship_type )
VALUES
( '" . $t_duplicate_bug_id . "', '" . $t_bug_id . "', '" . BUG_DUPLICATE . "')";
( '" . $t_bug_id . "', '" . $t_duplicate_bug_id . "', '" . BUG_DUPLICATE . "')";
db_query( $query );

$query = "SELECT id, user_id, date_modified
Expand Down
2 changes: 1 addition & 1 deletion doc/ChangeLog
Expand Up @@ -2,7 +2,7 @@ Mantis ChangeLog

2004.08.xx - 0.19.0xx


- 0004122: Upgrade script seems to swap the duplicate relationship (masc)

2004.07.20 - 0.19.0a2

Expand Down

0 comments on commit 35cf1f8

Please sign in to comment.