diff options
| author | Tyler Bello <tylerbello@users.sourceforge.net> | 2009-10-20 17:20:56 +0000 |
|---|---|---|
| committer | Tyler Bello <tylerbello@users.sourceforge.net> | 2009-10-20 17:20:56 +0000 |
| commit | 591ca1b09196ccaee053cd98f55506e5a515fe5f (patch) | |
| tree | 764d038cbb4359cacc7ac7bd09f18ea3244b09c1 | |
| parent | c57b15f7200a0015de21ad1b9022932fd76777dd (diff) | |
| download | liberty-591ca1b09196ccaee053cd98f55506e5a515fe5f.tar.gz liberty-591ca1b09196ccaee053cd98f55506e5a515fe5f.tar.bz2 liberty-591ca1b09196ccaee053cd98f55506e5a515fe5f.zip | |
Fix pathing to bit_setup_inc.php
| -rw-r--r-- | edit_help_inc.php | 6 | ||||
| -rw-r--r-- | help_format_tikiwiki_inc.php | 4 | ||||
| -rw-r--r-- | templates/services_inc.tpl | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/edit_help_inc.php b/edit_help_inc.php index bde4d14..4daa8c7 100644 --- a/edit_help_inc.php +++ b/edit_help_inc.php @@ -1,10 +1,10 @@ <?php /** - * $Id: edit_help_inc.php,v 1.20 2009/01/03 09:37:44 squareing Exp $ + * $Id: edit_help_inc.php,v 1.21 2009/10/20 17:20:56 tylerbello Exp $ * edit_help_inc * * @author spider <spider@steelsun.com> - * @version $Revision: 1.20 $ + * @version $Revision: 1.21 $ * @package liberty * @subpackage functions */ @@ -13,7 +13,7 @@ * required setup */ global $gLibertySystem, $gBitSmarty; -require_once( '../bit_setup_inc.php' ); +require_once( BIT_ROOT_PATH.'/bit_setup_inc.php' ); $inEditor = TRUE; // Required by PluginHelp to Determin Executed in an Editor diff --git a/help_format_tikiwiki_inc.php b/help_format_tikiwiki_inc.php index 0e139a7..42ced9e 100644 --- a/help_format_tikiwiki_inc.php +++ b/help_format_tikiwiki_inc.php @@ -3,7 +3,7 @@ * help_format_tikiwiki_inc * * @author Christian Fowler> - * @version $Revision: 1.13 $ + * @version $Revision: 1.14 $ * @package liberty * @subpackage functions */ @@ -12,7 +12,7 @@ * required setup */ global $gBitSystem, $gBitSmarty; -require_once( '../bit_setup_inc.php' ); +require_once( BIT_ROOT_PATH.'bit_setup_inc.php' ); require_once( KERNEL_PKG_PATH.'BitCache.php' ); $cache = new BitCache( 'liberty/help' ); diff --git a/templates/services_inc.tpl b/templates/services_inc.tpl index 490473d..6cf6d0e 100644 --- a/templates/services_inc.tpl +++ b/templates/services_inc.tpl @@ -14,4 +14,4 @@ </div> {/if} {/if} -{/strip}
\ No newline at end of file +{/strip} |
