Generate a true boolean and not a string so that tests against bqueued don't
return true if bqueued="false" instead of false.
This commit is contained in:
@@ -58,7 +58,7 @@ class Application {
|
||||
$this->sKeywords = $oRow->keywords;
|
||||
$this->sDescription = $oRow->description;
|
||||
$this->sWebpage = $oRow->webPage;
|
||||
$this->bQueued = $oRow->queued;
|
||||
$this->bQueued = ($oRow->queued=="true")?true:false;
|
||||
}
|
||||
$this->aVersionsIds[] = $oRow->versionId;
|
||||
}
|
||||
@@ -86,7 +86,7 @@ class Application {
|
||||
$this->sKeywords = $oRow->keywords;
|
||||
$this->sDescription = $oRow->description;
|
||||
$this->sWebpage = $oRow->webPage;
|
||||
$this->bQueued = $oRow->queued;
|
||||
$this->bQueued = ($oRow->queued=="true")?true:false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user