Skip to content

Commit

Permalink
fix 0009651: Version copy from parent project copies incorrect date
Browse files Browse the repository at this point in the history
  • Loading branch information
mantis authored and amyreese committed Dec 2, 2008
1 parent 99903fd commit f38422b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_proj_ver_copy.php
Expand Up @@ -53,7 +53,7 @@

foreach ( $t_rows as $t_row ) {
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'] );
version_add( $t_dst_project_id, $t_row['version'], $t_row['released'], $t_row['description'], db_date( $t_row['date_order'] ) );
}
}

Expand Down

0 comments on commit f38422b

Please sign in to comment.