diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-11-02 11:19:12 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-11-02 11:19:12 +0000 |
| commit | 75539560e20ac6610d04faa7d4e21b06ee99b206 (patch) | |
| tree | 590c4b1c1d18cd08d3aab92aac752214886cc123 /phpBB/install/install_install.php | |
| parent | f9b2dcff66d88dfe9237aaa7147e622a2991606d (diff) | |
| download | forums-75539560e20ac6610d04faa7d4e21b06ee99b206.tar forums-75539560e20ac6610d04faa7d4e21b06ee99b206.tar.gz forums-75539560e20ac6610d04faa7d4e21b06ee99b206.tar.bz2 forums-75539560e20ac6610d04faa7d4e21b06ee99b206.tar.xz forums-75539560e20ac6610d04faa7d4e21b06ee99b206.zip | |
fix 3 very tiny bugs... #35545, #35365 and #35305
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9041 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_install.php')
| -rw-r--r-- | phpBB/install/install_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 7f5339a6ea..8591446fea 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -398,7 +398,7 @@ class install_install extends module $location .= '/'; } - if (@is_readable($location . 'mogrify' . $exe) && @filesize($location . 'mogrify' . $exe) > 3000) + if (@file_exists($location) && @is_readable($location . 'mogrify' . $exe) && @filesize($location . 'mogrify' . $exe) > 3000) { $img_imagick = str_replace('\\', '/', $location); continue; |
