Fix the display-approved_versions() function by switching the use of a '=' in an if() to a '=='

This commit is contained in:
Tony Lambregts
2006-04-26 15:11:00 +00:00
committed by WineHQ
parent 300ad22e4b
commit a0db997fdf

View File

@@ -898,7 +898,7 @@ function display_approved_versions($aVersionsIds)
foreach($aVersionsIds as $iVersionId)
{
$oVersion = new Version($iVersionId);
if ($oVersion->sQueued = 'false')
if ($oVersion->sQueued == 'false')
{
// set row color
$bgcolor = ($c % 2 == 0) ? "color0" : "color1";