diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-03 16:05:34 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-03 16:05:34 -0500 |
| commit | 823d9d49e82ff4f854e20f0ac4de04c670056ef0 (patch) | |
| tree | e06f02cdf0a356ef87b96042b497bdc6b7333f71 | |
| parent | 162a9141a0eae9e950946fc844ce8f9befbd6a97 (diff) | |
| download | languages-823d9d49e82ff4f854e20f0ac4de04c670056ef0.tar.gz languages-823d9d49e82ff4f854e20f0ac4de04c670056ef0.tar.bz2 languages-823d9d49e82ff4f854e20f0ac4de04c670056ef0.zip | |
update path for kernel/includes/setup_inc.php
| -rw-r--r-- | ajax_translate.php | 2 | ||||
| -rw-r--r-- | edit_languages.php | 2 | ||||
| -rw-r--r-- | get_strings.php | 2 | ||||
| -rw-r--r-- | import.php | 2 | ||||
| -rw-r--r-- | master_strings.php | 2 | ||||
| -rw-r--r-- | switch_lang.php | 2 | ||||
| -rw-r--r-- | translate_strings.php | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/ajax_translate.php b/ajax_translate.php index 3c51f19..91763e6 100644 --- a/ajax_translate.php +++ b/ajax_translate.php @@ -14,7 +14,7 @@ * Initialization */ $gLightweightScan = TRUE; -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); $translation = NULL; diff --git a/edit_languages.php b/edit_languages.php index 24acb09..fb0e97e 100644 --- a/edit_languages.php +++ b/edit_languages.php @@ -13,7 +13,7 @@ /** * Initialization */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_languages_edit' ); diff --git a/get_strings.php b/get_strings.php index 7063d10..b3e4f4a 100644 --- a/get_strings.php +++ b/get_strings.php @@ -147,7 +147,7 @@ function writeTranslationPair ($fd, $key, $val) { //////////////////////////////////////////////////////////////////////////// -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); if(!$gBitUser->isAdmin()) { die("You need to be admin to run this script"); @@ -12,7 +12,7 @@ /** * Initialization */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_languages_import' ); diff --git a/master_strings.php b/master_strings.php index 9e92250..151fbf8 100644 --- a/master_strings.php +++ b/master_strings.php @@ -11,7 +11,7 @@ /** * Initialization */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_languages_edit_master' ); diff --git a/switch_lang.php b/switch_lang.php index b31d0d4..d0ebd3d 100644 --- a/switch_lang.php +++ b/switch_lang.php @@ -8,7 +8,7 @@ /** * Initialization */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); include_once( KERNEL_PKG_CLASS_PATH.'BitBase.php' ); if (isset($_SERVER['HTTP_REFERER'])) { diff --git a/translate_strings.php b/translate_strings.php index c6e460c..c34db76 100644 --- a/translate_strings.php +++ b/translate_strings.php @@ -13,7 +13,7 @@ /** * Initialization */ -require_once( '../kernel/setup_inc.php' ); +require_once( '../kernel/includes/setup_inc.php' ); $gBitSystem->verifyPermission( 'p_languages_edit' ); |
