summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2018-07-31 23:52:22 -0400
committerspiderr <spiderr@bitweaver.org>2018-07-31 23:52:22 -0400
commitba3bd160a64121d46d84fad165f33f3be52f023c (patch)
tree343be175e68beb860e8f9130ca4a7188bee6585d
parent0cb5363d4b4a63ed99a2b2381ecfd4e1ac7f878f (diff)
downloadstats-ba3bd160a64121d46d84fad165f33f3be52f023c.tar.gz
stats-ba3bd160a64121d46d84fad165f33f3be52f023c.tar.bz2
stats-ba3bd160a64121d46d84fad165f33f3be52f023c.zip
reorg util package to put library code in includes/ and used new UTIL_PKG_INC constant
-rw-r--r--item_chart.php2
-rw-r--r--pv_chart.php2
-rw-r--r--usage_chart.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/item_chart.php b/item_chart.php
index e28cf60..6dbdedd 100644
--- a/item_chart.php
+++ b/item_chart.php
@@ -18,7 +18,7 @@
*/
require_once( '../kernel/setup_inc.php' );
include_once( STATS_PKG_PATH . "Statistics.php" );
-include_once( UTIL_PKG_PATH . "phplot.php" );
+include_once( UTIL_PKG_INC . "phplot.php" );
global $gBitSystem;
$gBitSystem->isPackageActive( 'stats' );
diff --git a/pv_chart.php b/pv_chart.php
index d259e5b..fe078df 100644
--- a/pv_chart.php
+++ b/pv_chart.php
@@ -18,7 +18,7 @@
*/
require_once( '../kernel/setup_inc.php' );
include_once( STATS_PKG_PATH . "Statistics.php" );
-include_once( UTIL_PKG_PATH . "phplot.php" );
+include_once( UTIL_PKG_INC . "phplot.php" );
$gBitSystem->isPackageActive( 'stats' );
$gBitSystem->verifyPermission( 'p_stats_view' );
diff --git a/usage_chart.php b/usage_chart.php
index 6b68da3..de436e9 100644
--- a/usage_chart.php
+++ b/usage_chart.php
@@ -18,7 +18,7 @@
*/
require_once( '../kernel/setup_inc.php' );
include_once( STATS_PKG_PATH . "Statistics.php" );
-include_once( UTIL_PKG_PATH . "phplot.php" );
+include_once( UTIL_PKG_INC . "phplot.php" );
global $gBitSystem;
$gBitSystem->isPackageActive( 'stats' );