Skip to content

Commit

Permalink
Required the Graph API for old graph files, even though they don't ac…
Browse files Browse the repository at this point in the history
…tually use it, since it takes care of loading jpgraph.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1771 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Jeroen Latour committed Jan 25, 2003
1 parent f7289f1 commit 5801fbd
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 7 deletions.
8 changes: 7 additions & 1 deletion graphs/graph_assigned_to_me.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down
8 changes: 7 additions & 1 deletion graphs/graph_by_category.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down
8 changes: 7 additions & 1 deletion graphs/graph_by_cumulative.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down
8 changes: 7 additions & 1 deletion graphs/graph_by_daily_delta.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down
7 changes: 7 additions & 0 deletions graphs/graph_by_release_delta.php
Expand Up @@ -5,6 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
$data_category_arr = array();
$data_count_arr = array();
Expand Down
8 changes: 7 additions & 1 deletion graphs/graph_by_severity.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down
8 changes: 7 additions & 1 deletion graphs/graph_by_severity_status.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down
8 changes: 7 additions & 1 deletion graphs/graph_reported_by_me.php
Expand Up @@ -5,7 +5,13 @@
# This program is distributed under the terms and conditions of the GPL
# See the README and LICENSE files for details
?>
<?php require_once( '../core.php' ) ?>
<?php
require_once( '../core.php' );

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'graph_api.php' );
?>
<?php
# Grab Data
# ---
Expand Down

0 comments on commit 5801fbd

Please sign in to comment.