Skip to content

Commit

Permalink
Fix #3920: Two missing graphs in advanced summary.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2599 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
narcissus committed Jun 10, 2004
1 parent e4a4ec7 commit 6f554db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/graph_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: graph_api.php,v 1.15 2004-04-08 22:44:59 prescience Exp $
# $Id: graph_api.php,v 1.16 2004-06-10 06:51:57 narcissus Exp $
# --------------------------------------------------------

if ( ON == config_get( 'use_jpgraph' ) ) {
Expand Down Expand Up @@ -620,7 +620,7 @@ function create_category_summary() {
if ( ALL_PROJECTS == $t_project_id ) {
$specific_where = ' 1=1';
} else {
$specific_where = " AND project_id='$t_project_id'";
$specific_where = " project_id='$t_project_id'";
}

$query = "SELECT DISTINCT category
Expand Down Expand Up @@ -701,7 +701,7 @@ function create_cumulative_bydate(){
if ( ALL_PROJECTS == $t_project_id ) {
$specific_where = ' 1=1';
} else {
$specific_where = " AND project_id='$t_project_id'";
$specific_where = " project_id='$t_project_id'";
}

# Get all the submitted dates
Expand Down
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -54,6 +54,7 @@ Mantis ChangeLog
* Fix #3873: Invalid queries being generated from old filters.
* Fix #3879: Empty entry in project select field can cause bugs to be moved to non-existing project.
* Fix #3886: Custom HTML page title not displayed.
* Fix #3920: Two missing graphs in advanced summary.
* New Config: set_view_status_threshold (default REPORTER) - threshold needed to set the view status while reporting a bug / bugnote.
* New Config: change_view_status_threshold (default UPDATER) - threshold needed to update the view status while updating a bug / bugnote.
* New Config: view_handler_threshold (default VIEWER) - threshold needed to view the bug handler (now works for emails only).
Expand Down

0 comments on commit 6f554db

Please sign in to comment.