diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-25 16:53:26 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-25 16:53:26 +0000 |
commit | 795d702397ab62726fded96e87c40b97c6387aab (patch) | |
tree | 5597eaebae3b991f714f3aecaf2e7f1d54b4ba2f | |
parent | 7947c4e92cd30e8fa508984f0474b9d77a027cd6 (diff) | |
download | forums-795d702397ab62726fded96e87c40b97c6387aab.tar forums-795d702397ab62726fded96e87c40b97c6387aab.tar.gz forums-795d702397ab62726fded96e87c40b97c6387aab.tar.bz2 forums-795d702397ab62726fded96e87c40b97c6387aab.tar.xz forums-795d702397ab62726fded96e87c40b97c6387aab.zip |
acm_type var name update
git-svn-id: file:///svn/phpbb/trunk@4434 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index c10554eccf..2ba3b17019 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -816,7 +816,7 @@ if ($stage == 2) $config_data .= "\$dbuser = '$dbuser';\n"; $config_data .= "\$dbpasswd = '$dbpasswd';\n\n"; $config_data .= "\$table_prefix = '$table_prefix';\n"; - $config_data .= "\$acm_type = '" . ((!$acm_typefile) ? 'db' : '') . "';\n"; + $config_data .= "\$acm_type = '" . (($acm_type) ? $acm_type : 'db') . "';\n"; $config_data .= "\$load_extensions = '$load_extensions';\n\n"; $config_data .= "define('PHPBB_INSTALLED', true);\n"; $config_data .= "define('DEBUG', true);\n"; // Comment out when final |