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

elseif -> else if

git-svn-id: file:///svn/phpbb/trunk@6765 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-12-15 02:38:14 +00:00
parent 837fcd1295
commit 950d67d60e
5 changed files with 10 additions and 10 deletions

View File

@@ -60,7 +60,7 @@ while ($module = array_shift($keys))
$compare = "Equal";
$equal++;
}
elseif (strcasecmp($kkeys[$module][$dup], $kkeys[$other_module][$dup]) == 0)
else if (strcasecmp($kkeys[$module][$dup], $kkeys[$other_module][$dup]) == 0)
{
$compare = "Differ in case";
$case++;