From a84d8899dead27f805f4fb64de6adc00716ade09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Sun, 22 Apr 2007 16:17:36 +0000 Subject: [PATCH] Fix appData::mustBeQueued() --- include/appData.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/appData.php b/include/appData.php index 1140588..6803bad 100644 --- a/include/appData.php +++ b/include/appData.php @@ -370,14 +370,14 @@ class appData if($this->iVersionId) { $oVersion = new version($this->iVersionId); - if($oVersion->canEdit()) + if($oVersion->canEdit() && $oVersion->sQueued == "false") return FALSE; else return TRUE; } else if($this->iAppId) { $oApp = new application($this->iAppId); - if($oApp->canEdit()) + if($oApp->canEdit() && $oApp->sQueued == "false") return FALSE; else return TRUE;