diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-10-11 10:18:56 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-10-11 10:18:56 +0000 |
| commit | d049e4e87442b172d81f7de90302a4009943d4c3 (patch) | |
| tree | b44f56e2e327fbf6aa3c040ce987e54738271b49 | |
| parent | f396f2ccbe5f686ceafce6c979ab132717f53086 (diff) | |
| download | liberty-d049e4e87442b172d81f7de90302a4009943d4c3.tar.gz liberty-d049e4e87442b172d81f7de90302a4009943d4c3.tar.bz2 liberty-d049e4e87442b172d81f7de90302a4009943d4c3.zip | |
fix mSystem var call
| -rwxr-xr-x | LibertySystem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LibertySystem.php b/LibertySystem.php index 86c9b50..7c384fa 100755 --- a/LibertySystem.php +++ b/LibertySystem.php @@ -3,7 +3,7 @@ * System class for handling the liberty package * * @package liberty -* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertySystem.php,v 1.47 2006/10/11 09:58:22 squareing Exp $ +* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertySystem.php,v 1.48 2006/10/11 10:18:56 squareing Exp $ * @author spider <spider@steelsun.com> */ @@ -160,7 +160,7 @@ class LibertySystem extends LibertyBase { // This happens during installation and therefore requires that we include the plugin file for the constant definitions // only execute the following if this class hasn't been extended - if( $mSystem == LIBERTY_PKG_NAME ) { + if( $this->mSystem == LIBERTY_PKG_NAME ) { $plugin_file = LIBERTY_PKG_PATH.'plugins/format.tikiwiki.php'; if( $format_plugin_count == 0 || $default_format_found == 0 && is_file( $plugin_file ) ) { require_once( $plugin_file ); |
