diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-03 16:05:31 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-03 16:05:31 -0500 |
| commit | 82e91b5b63ca501b481d50a5a450ecf7249fa279 (patch) | |
| tree | 1cff4af3479d26afde309194c7cad2e9124cf546 /admin | |
| parent | e66a8ae3b98924b441dd842379f9bfa9b2f82335 (diff) | |
| download | kernel-82e91b5b63ca501b481d50a5a450ecf7249fa279.tar.gz kernel-82e91b5b63ca501b481d50a5a450ecf7249fa279.tar.bz2 kernel-82e91b5b63ca501b481d50a5a450ecf7249fa279.zip | |
update path for kernel/includes/setup_inc.php
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_notifications.php | 2 | ||||
| -rw-r--r-- | admin/admin_system.php | 2 | ||||
| -rw-r--r-- | admin/apc.php | 2 | ||||
| -rw-r--r-- | admin/backup.php | 2 | ||||
| -rw-r--r-- | admin/db_performance.php | 2 | ||||
| -rw-r--r-- | admin/index.php | 2 | ||||
| -rw-r--r-- | admin/list_cache.php | 2 | ||||
| -rw-r--r-- | admin/phpinfo.php | 2 | ||||
| -rw-r--r-- | admin/remote_backup.php | 2 | ||||
| -rw-r--r-- | admin/sitemaps.php | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/admin/admin_notifications.php b/admin/admin_notifications.php index e310058..5563726 100644 --- a/admin/admin_notifications.php +++ b/admin/admin_notifications.php @@ -7,7 +7,7 @@ // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. // Initialization -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); include_once( KERNEL_PKG_PATH.'notification_lib.php' ); diff --git a/admin/admin_system.php b/admin/admin_system.php index 6ba5741..a57caba 100644 --- a/admin/admin_system.php +++ b/admin/admin_system.php @@ -5,7 +5,7 @@ // All Rights Reserved. See below for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_admin' ); $feedback = array(); diff --git a/admin/apc.php b/admin/apc.php index d75b078..693ed15 100644 --- a/admin/apc.php +++ b/admin/apc.php @@ -24,7 +24,7 @@ $VERSION='$Id$'; -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); global $gBitUser; $gBitUser->verifyPermission( 'p_admin' ); diff --git a/admin/backup.php b/admin/backup.php index 4e6bd71..16a748b 100644 --- a/admin/backup.php +++ b/admin/backup.php @@ -7,7 +7,7 @@ // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. // Initialization -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); require_once ( KERNEL_PKG_PATH.'backups_lib.php' ); // Check for admin permission diff --git a/admin/db_performance.php b/admin/db_performance.php index 2ccb398..1cc3602 100644 --- a/admin/db_performance.php +++ b/admin/db_performance.php @@ -1,6 +1,6 @@ <?php - require_once( '../../kernel/setup_inc.php' ); + require_once( '../../kernel/includes/setup_inc.php' ); if (!$gBitUser->isAdmin()) { $gBitSmarty->assign('msg', tra("You dont have permission to use this feature")); diff --git a/admin/index.php b/admin/index.php index b310030..c03f429 100644 --- a/admin/index.php +++ b/admin/index.php @@ -9,7 +9,7 @@ // Initialization global $gForceAdodb; $gForceAdodb = TRUE; -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); require_once( KERNEL_PKG_INCLUDE_PATH.'simple_form_functions_lib.php' ); //make an alias in case anyone decides to verifyInstalledPackages diff --git a/admin/list_cache.php b/admin/list_cache.php index 7361662..246beb8 100644 --- a/admin/list_cache.php +++ b/admin/list_cache.php @@ -7,7 +7,7 @@ // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. // Initialization -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_admin' ); diff --git a/admin/phpinfo.php b/admin/phpinfo.php index 5450938..bbc8ed7 100644 --- a/admin/phpinfo.php +++ b/admin/phpinfo.php @@ -7,7 +7,7 @@ // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. // Initialization -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_admin' ); phpinfo(); ?> diff --git a/admin/remote_backup.php b/admin/remote_backup.php index 63426ce..a235b82 100644 --- a/admin/remote_backup.php +++ b/admin/remote_backup.php @@ -12,7 +12,7 @@ // PLEASE UNCOMMENT THIS LINE TO ACTIVATE REMOTE BACKUPS (DISABLED IN THE DISTRIBUTION) die; -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); include_once('lib/backups/backupslib.php'); if(isset($_REQUEST["generate"])) { if(isset($_REQUEST["my_word"]) && diff --git a/admin/sitemaps.php b/admin/sitemaps.php index 50750f5..85af345 100644 --- a/admin/sitemaps.php +++ b/admin/sitemaps.php @@ -10,7 +10,7 @@ // Initialization -require_once( '../../kernel/setup_inc.php' ); +require_once( '../../kernel/includes/setup_inc.php' ); include_once( KERNEL_PKG_PATH.'notification_lib.php' ); |
