Fix the display-approved_versions() function by switching the use of a '=' in an if() to a '=='
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user