diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-02-03 17:23:54 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-02-03 17:23:54 +0000 |
| commit | 3c06ac4693bad6d5b071855367ff526f8ca44846 (patch) | |
| tree | d9ee1a13fecea437336c75d81a41479b40063d7a /install_packages.php | |
| parent | 0cbb5687eadbc9967150eae8954f244b94dcc3ca (diff) | |
| download | install-3c06ac4693bad6d5b071855367ff526f8ca44846.tar.gz install-3c06ac4693bad6d5b071855367ff526f8ca44846.tar.bz2 install-3c06ac4693bad6d5b071855367ff526f8ca44846.zip | |
move mod_lib to BitThemes, rename function names using camelCaps
rename tidbits_user_modules to themes_custom_modules and move table to themes schema
Diffstat (limited to 'install_packages.php')
| -rw-r--r-- | install_packages.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/install_packages.php b/install_packages.php index 6e5efef..ebb898b 100644 --- a/install_packages.php +++ b/install_packages.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/install_packages.php,v 1.24 2006/02/03 10:41:53 lsces Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/install_packages.php,v 1.25 2006/02/03 17:23:54 squareing Exp $ * @package install * @subpackage functions */ @@ -201,14 +201,13 @@ if( !empty( $_REQUEST['cancel'] ) ) { /** * Some packages have some special things to take care of here. */ - require_once( KERNEL_PKG_PATH.'mod_lib.php' ); foreach( $gBitInstaller->mInstallModules as $mod ) { $mod['user_id'] = ROOT_USER_ID; if( !isset( $mod['layout'] ) ) { $mod['layout'] = DEFAULT_PACKAGE; } - $modlib->storeModule( $mod ); - $modlib->storeLayout( $mod ); + $gBitThemes->storeModule( $mod ); + $gBitThemes->storeLayout( $mod ); } } |
