diff options
| author | wjames5 <will@tekimaki.com> | 2010-02-08 16:33:39 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2010-02-08 16:33:39 +0000 |
| commit | 37c458a18cd9a4eca62abfc04be4204cdf06ee61 (patch) | |
| tree | bcf9691cd8d1171c4c2630e0673f598e9a08ebf1 | |
| parent | 0ba0bd68a8d1e2123b0a1eb8014b3fcc9289c4d3 (diff) | |
| download | kernel-PRE_BIT_SETUP_CHANGE.tar.gz kernel-PRE_BIT_SETUP_CHANGE.tar.bz2 kernel-PRE_BIT_SETUP_CHANGE.zip | |
if no db table and no settings for pkg found then must not be installedpre_deprecate_bit_setup_incPRE_BIT_SETUP_CHANGE
| -rwxr-xr-x | BitSystem.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/BitSystem.php b/BitSystem.php index 18c44e8..cad99f7 100755 --- a/BitSystem.php +++ b/BitSystem.php @@ -3,7 +3,7 @@ * Main bitweaver systems functions * * @package kernel - * @version $Header: /cvsroot/bitweaver/_bit_kernel/BitSystem.php,v 1.230 2010/02/05 23:22:06 wjames5 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_kernel/BitSystem.php,v 1.231 2010/02/08 16:33:39 wjames5 Exp $ * @author spider <spider@steelsun.com> */ // +----------------------------------------------------------------------+ @@ -2195,6 +2195,9 @@ die; } } else { $this->mPackages[$package]['db_tables_found'] = FALSE; + if( !$this->getConfig( 'package_'.strtolower( $package ) ) ){ + $this->mPackages[$package]['installed'] = FALSE; + } } $this->mPackages[$package]['active_switch'] = $this->getConfig( 'package_'.strtolower( $package ) ); |
