1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

- By default, new installations of magick add itself to PATH and not to a variable that it creates.

git-svn-id: file:///svn/phpbb/trunk@5611 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-03-09 02:43:35 +00:00
parent 891c3d2a60
commit b8834051eb
3 changed files with 20 additions and 2 deletions

View File

@@ -161,7 +161,8 @@ if (!function_exists('array_combine'))
$values = array_values($values);
$n = sizeof($keys);
if (!$n || !sizeof($values) || ($n != sizeof($values)))
$m = sizeof($values);
if (!$n || !$m || ($n != $m))
{
return false;
}