summaryrefslogtreecommitdiff
path: root/install_packages.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-08-05 15:41:38 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-08-05 15:41:38 +0000
commit5ecde5b326720e0bf0d8ad05e9bc3e5875d9d4df (patch)
tree96009611a4e83251d9f00ef515f8dffb7201022c /install_packages.php
parentb66102e8ce63013f8258bc31cfeff3db15701463 (diff)
downloadinstall-5ecde5b326720e0bf0d8ad05e9bc3e5875d9d4df.tar.gz
install-5ecde5b326720e0bf0d8ad05e9bc3e5875d9d4df.tar.bz2
install-5ecde5b326720e0bf0d8ad05e9bc3e5875d9d4df.zip
we don't have liberty_plugins table anymore
Diffstat (limited to 'install_packages.php')
-rw-r--r--install_packages.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install_packages.php b/install_packages.php
index d796382..21f7b7c 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.38 2006/07/23 00:56:01 jht001 Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/install_packages.php,v 1.39 2006/08/05 15:41:38 squareing Exp $
* @package install
* @subpackage functions
*/
@@ -226,7 +226,7 @@ if( !empty( $_REQUEST['cancel'] ) ) {
// Installing users has some special things to take care of here and needs a separate check.
if( in_array( 'users', $_REQUEST['packages'] ) ) {
// These hardcoded queries need to go in here to avoid constraint violations
- $gBitUser->mDb->query( "INSERT INTO `".BIT_DB_PREFIX."liberty_plugins` (`plugin_guid`, `plugin_type`, `is_active`, `plugin_description`) VALUES ( 'tikiwiki', 'format', 'y', 'TikiWiki Syntax Format Parser' )" );
+ //$gBitUser->mDb->query( "INSERT INTO `".BIT_DB_PREFIX."liberty_plugins` (`plugin_guid`, `plugin_type`, `is_active`, `plugin_description`) VALUES ( 'tikiwiki', 'format', 'y', 'TikiWiki Syntax Format Parser' )" );
// Creating 'root' user has id=1. phpBB starts with user_id=2, so this is a hack to keep things in sync
$rootUser = new BitPermUser();
$storeHash = array( 'real_name' => 'root', 'login' => 'root', 'password' => $_SESSION['password'], 'email' => 'root@localhost', 'pass_due' => FALSE, 'user_id' => ROOT_USER_ID );