Skip to content

Commit

Permalink
Fixed #8490: Undefined variable: t_version in manage_proj_ver_copy.php.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@4655 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Oct 21, 2007
1 parent 26ba837 commit 18170ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manage_proj_ver_copy.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: manage_proj_ver_copy.php,v 1.2 2007-09-25 23:52:13 nuclear_eclipse Exp $
# $Id: manage_proj_ver_copy.php,v 1.3 2007-10-21 05:27:46 vboctor Exp $
# --------------------------------------------------------

require_once( 'core.php' );
Expand Down Expand Up @@ -38,7 +38,7 @@
$t_rows = version_get_all_rows( $t_src_project_id );

foreach ( $t_rows as $t_row ) {
if ( version_is_unique( $t_version, $t_dst_project_id ) ) {
if ( version_is_unique( $t_row['version'], $t_dst_project_id ) ) {
version_add( $t_dst_project_id, $t_row['version'], $t_row['released'], $t_row['description'], $t_row['date_order'] );
}
}
Expand Down

0 comments on commit 18170ef

Please sign in to comment.