distribution: Make sState member private

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-12-12 19:13:16 +01:00
committed by Chris Morgan
parent 49d334d1d1
commit 956e5391de
2 changed files with 9 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ class testData_queue
$this->oTestData->unQueue();
/* Avoid a misguiding message about the distribution being unqueued */
if($this->oDistribution->sStatus != 'accepted')
if($this->oDistribution->objectGetState() != 'accepted')
$this->oDistribution->unQueue();
}
@@ -77,7 +77,7 @@ class testData_queue
/* If we are processing queued test results with a queued distribution,
we display some additional help here */
if($this->oDistribution->iDistributionId &&
$this->oDistribution->sStatus != 'accepted' && $this->canEdit())
$this->oDistribution->objectGetState() != 'accepted' && $this->canEdit())
{
echo "The user submitted a new distribution, which will be un-queued ".
"together with the test data unless you select an existing one ".
@@ -88,7 +88,7 @@ class testData_queue
distribution is un-queued, there is no need to display the
distribution form here */
if(!$this->oTestData->iDistributionId or
$this->oDistribution->sStatus != 'accepted')
$this->oDistribution->objectGetState() != 'accepted')
{
echo html_frame_start("New Distribution", "90%");
$this->oDistribution->outputEditor();