|
|
mantisbt/graphs graph_by_release_delta.php,1.8,1.9: msg#00028
|
Subject: |
mantisbt/graphs graph_by_release_delta.php,1.8,1.9 |
Update of /cvsroot/mantisbt/mantisbt/graphs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25617/graphs
Modified Files:
graph_by_release_delta.php
Log Message:
fix for 0005419: Odd use of SELECT DISTINCT
- change DISTINCT() to DISTINCT for postgresql and mssql
Index: graph_by_release_delta.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/graphs/graph_by_release_delta.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- graph_by_release_delta.php 12 Feb 2005 20:03:48 -0000 1.8
+++ graph_by_release_delta.php 11 Apr 2005 02:21:55 -0000 1.9
@@ -23,7 +23,7 @@
$t_project_id = helper_get_current_project();
# Grab the Projections/Releases
- $query = "SELECT DISTINCT( projection )
+ $query = "SELECT DISTINCT projection
FROM mantis_bug_table
WHERE project_id='$t_project_id'
ORDER BY projection";
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
|
| |