Use mustBeQueued() to determine unqueueing in objectManager

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-22 00:39:53 +00:00
committed by WineHQ
parent 3dc453112a
commit 8cf53f1679
5 changed files with 20 additions and 1 deletions

View File

@@ -217,6 +217,14 @@ class Vendor {
return FALSE;
}
function mustBeQueued()
{
if($_SESSION['current']->hasPriv("admin"))
return FALSE;
else
return TRUE;
}
function getOutputEditorValues($aClean)
{
$this->sName = $aClean['sVendorName'];