Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv944
Modified Files:
changelog_page.php
Log Message:
fix for 0005146: "Version not found" error on changelog page
failed when version had quotes
Index: changelog_page.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/changelog_page.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- changelog_page.php 25 Oct 2004 19:51:02 -0000 1.9
+++ changelog_page.php 24 Jan 2005 20:15:54 -0000 1.10
@@ -65,7 +65,7 @@
$t_version = $t_version_row['version'];
$c_version = db_prepare_string( $t_version );
- $t_version_id = version_get_id( $c_version, $f_project_id );
+ $t_version_id = version_get_id( $t_version, $f_project_id );
$query = "SELECT id, view_state FROM $t_bug_table WHERE
project_id='$c_project_id' AND fixed_in_version='$c_version' ORDER BY
last_updated DESC";
-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
|