diff options
| -rw-r--r-- | index.php | 2 | ||||
| -rw-r--r-- | item_chart.php | 2 | ||||
| -rw-r--r-- | pv_chart.php | 2 | ||||
| -rw-r--r-- | referrers.php | 2 | ||||
| -rw-r--r-- | usage_chart.php | 2 | ||||
| -rw-r--r-- | users.php | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -10,7 +10,7 @@ /** * required setup */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); include_once( STATS_PKG_PATH.'Statistics.php' ); $gBitSystem->verifyPackage( 'stats' ); diff --git a/item_chart.php b/item_chart.php index 5df0b3d..3703e2a 100644 --- a/item_chart.php +++ b/item_chart.php @@ -16,7 +16,7 @@ /** * required setup */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); include_once( STATS_PKG_PATH . "Statistics.php" ); include_once( UTIL_PKG_INCLUDE_PATH . "phplot.php" ); global $gBitSystem; diff --git a/pv_chart.php b/pv_chart.php index 6ca6ddf..0f6c767 100644 --- a/pv_chart.php +++ b/pv_chart.php @@ -16,7 +16,7 @@ /** * required setup */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); include_once( STATS_PKG_PATH . "Statistics.php" ); include_once( UTIL_PKG_INCLUDE_PATH . "phplot.php" ); diff --git a/referrers.php b/referrers.php index 0f8f8fe..0897f8d 100644 --- a/referrers.php +++ b/referrers.php @@ -9,7 +9,7 @@ /** * required setup */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); include_once ( STATS_PKG_PATH.'Statistics.php'); $gBitSystem->verifyPackage( 'stats' ); diff --git a/usage_chart.php b/usage_chart.php index 1a9fb43..da29b05 100644 --- a/usage_chart.php +++ b/usage_chart.php @@ -16,7 +16,7 @@ /** * required setup */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); include_once( STATS_PKG_PATH . "Statistics.php" ); include_once( UTIL_PKG_INCLUDE_PATH . "phplot.php" ); global $gBitSystem; @@ -13,7 +13,7 @@ /** * Required files */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); require_once( STATS_PKG_PATH.'Statistics.php' ); $stats = new Statistics(); |
