Fix Bustage caused by missing )

This commit is contained in:
psychoticwolf%carolina.rr.com 2004-12-09 07:39:10 +00:00
Родитель d168f9bf33
Коммит 64c9d9e63d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -257,7 +257,7 @@ while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
}
// Do we already have the current or a newer one?
if (vercmp($line['extversion'], $reqItemVersion) <= 0 {
if (vercmp($line['extversion'], $reqItemVersion) <= 0) {
$thisVersionData = $line;
break;
}