diff options
| author | wjames5 <will@tekimaki.com> | 2010-02-08 21:27:23 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2010-02-08 21:27:23 +0000 |
| commit | 74e2139e9b385c226830f0c1bbcdd8e8d0e104b8 (patch) | |
| tree | f9e94a9178bfe2adacd3b4b8a901005f1a3ca742 /admin | |
| parent | 37c458a18cd9a4eca62abfc04be4204cdf06ee61 (diff) | |
| download | kernel-74e2139e9b385c226830f0c1bbcdd8e8d0e104b8.tar.gz kernel-74e2139e9b385c226830f0c1bbcdd8e8d0e104b8.tar.bz2 kernel-74e2139e9b385c226830f0c1bbcdd8e8d0e104b8.zip | |
deprecate root bit_setup_inc use kernel/setup_inc.php
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_notifications.php | 4 | ||||
| -rw-r--r-- | admin/admin_system.php | 4 | ||||
| -rw-r--r-- | admin/backup.php | 4 | ||||
| -rw-r--r-- | admin/db_performance.php | 2 | ||||
| -rw-r--r-- | admin/index.php | 4 | ||||
| -rw-r--r-- | admin/list_cache.php | 4 | ||||
| -rw-r--r-- | admin/phpinfo.php | 4 | ||||
| -rw-r--r-- | admin/remote_backup.php | 4 |
8 files changed, 15 insertions, 15 deletions
diff --git a/admin/admin_notifications.php b/admin/admin_notifications.php index b04475f..fcd8238 100644 --- a/admin/admin_notifications.php +++ b/admin/admin_notifications.php @@ -1,13 +1,13 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/admin_notifications.php,v 1.7 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/admin_notifications.php,v 1.8 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // 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. // Initialization -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); include_once( KERNEL_PKG_PATH.'notification_lib.php' ); diff --git a/admin/admin_system.php b/admin/admin_system.php index 82db100..0e65e3b 100644 --- a/admin/admin_system.php +++ b/admin/admin_system.php @@ -1,11 +1,11 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/admin_system.php,v 1.22 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/admin_system.php,v 1.23 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // 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( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_admin' ); $feedback = array(); diff --git a/admin/backup.php b/admin/backup.php index 65e6fe4..84cb9e9 100644 --- a/admin/backup.php +++ b/admin/backup.php @@ -1,13 +1,13 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/backup.php,v 1.7 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/backup.php,v 1.8 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // 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. // Initialization -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/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 c450b50..122a43b 100644 --- a/admin/db_performance.php +++ b/admin/db_performance.php @@ -1,6 +1,6 @@ <?php - require_once( '../../bit_setup_inc.php' ); + require_once( '../../kernel/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 cb58482..2051cbe 100644 --- a/admin/index.php +++ b/admin/index.php @@ -1,6 +1,6 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/index.php,v 1.26 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/index.php,v 1.27 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See below for details and a complete list of authors. @@ -9,7 +9,7 @@ // Initialization global $gForceAdodb; $gForceAdodb = TRUE; -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); require_once( KERNEL_PKG_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 025041a..78e95a9 100644 --- a/admin/list_cache.php +++ b/admin/list_cache.php @@ -1,13 +1,13 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/list_cache.php,v 1.8 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/list_cache.php,v 1.9 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // 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. // Initialization -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_admin' ); diff --git a/admin/phpinfo.php b/admin/phpinfo.php index a68ea53..eb1ae7c 100644 --- a/admin/phpinfo.php +++ b/admin/phpinfo.php @@ -1,13 +1,13 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/phpinfo.php,v 1.4 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/phpinfo.php,v 1.5 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // 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. // Initialization -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_admin' ); phpinfo(); ?> diff --git a/admin/remote_backup.php b/admin/remote_backup.php index 2a24bff..fcbd495 100644 --- a/admin/remote_backup.php +++ b/admin/remote_backup.php @@ -1,6 +1,6 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_kernel/admin/remote_backup.php,v 1.3 2009/10/01 14:17:01 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_kernel/admin/remote_backup.php,v 1.4 2010/02/08 21:27:23 wjames5 Exp $ // Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See below for details and a complete list of authors. @@ -12,7 +12,7 @@ // PLEASE UNCOMMENT THIS LINE TO ACTIVATE REMOTE BACKUPS (DISABLED IN THE DISTRIBUTION) die; -require_once( '../../bit_setup_inc.php' ); +require_once( '../../kernel/setup_inc.php' ); include_once('lib/backups/backupslib.php'); if(isset($_REQUEST["generate"])) { if(isset($_REQUEST["my_word"]) && |
