aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2004-02-29 23:27:13 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2004-02-29 23:27:13 +0000
commit7558d522b1d42f7f19165b5f94aadb4dc3866011 (patch)
treee199ca35086df638010854c985a9527667cc257e /phpBB/install/install.php
parente84a8dc12cefc9e8a8b09dbe1ecc25af3cc02689 (diff)
downloadforums-7558d522b1d42f7f19165b5f94aadb4dc3866011.tar
forums-7558d522b1d42f7f19165b5f94aadb4dc3866011.tar.gz
forums-7558d522b1d42f7f19165b5f94aadb4dc3866011.tar.bz2
forums-7558d522b1d42f7f19165b5f94aadb4dc3866011.tar.xz
forums-7558d522b1d42f7f19165b5f94aadb4dc3866011.zip
bots
git-svn-id: file:///svn/phpbb/trunk@4848 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r--phpBB/install/install.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php
index 73b9659ae7..3da096cc3a 100644
--- a/phpBB/install/install.php
+++ b/phpBB/install/install.php
@@ -403,7 +403,7 @@ if ($stage == 0)
foreach ($locations as $location)
{
- if (@file_exists($location . 'convert' . $exe) && @is_readable($location . 'convert' . $exe))
+ if (@file_exists($location . 'convert' . $exe) && @is_readable($location . 'convert' . $exe) && @filesize($location . 'convert' . $exe) > 80000)
{
$img_imagick = str_replace('\\', '/', $location);
continue;
@@ -1196,6 +1196,7 @@ if ($stage == 4)
{
// Load the basic configuration data
define('SESSIONS_TABLE', $table_prefix . 'sessions');
+ define('BOTS_TABLE', $table_prefix . 'bots');
define('USERS_TABLE', $table_prefix . 'users');
define('BANLIST_TABLE', $table_prefix . 'banlist');