versions, applications, and screenshots have to be marked queued="false" instead of
queued="" when added without being unqueued
This commit is contained in:
@@ -129,7 +129,7 @@ class Application {
|
||||
'vendorId' => $iVendorId,
|
||||
'catId' => $iCatId,
|
||||
'submitterId'=> $_SESSION['current']->iUserId,
|
||||
'queued' => $this->bQueued ));
|
||||
'queued' => $this->bQueued?"true":"false" ));
|
||||
$sFields = "({$aInsert['FIELDS']})";
|
||||
$sValues = "({$aInsert['VALUES']})";
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ class Screenshot {
|
||||
$aInsert = compile_insert_string(array( 'versionId' => $iVersionId,
|
||||
'type' => "image",
|
||||
'description' => $sDescription,
|
||||
'queued' => $this->bQueued,
|
||||
'queued' => $this->bQueued?"true":"false",
|
||||
'submitterId' => $_SESSION['current']->iUserId ));
|
||||
$sFields = "({$aInsert['FIELDS']})";
|
||||
$sValues = "({$aInsert['VALUES']})";
|
||||
|
||||
@@ -132,7 +132,7 @@ class Version {
|
||||
'maintainer_rating' => $sTestedRating,
|
||||
'appId' => $iAppId,
|
||||
'submitterId' => $_SESSION['current']->iUserId,
|
||||
'queued' => $this->bQueued ));
|
||||
'queued' => $this->bQueued?"true":"false" ));
|
||||
$sFields = "({$aInsert['FIELDS']})";
|
||||
$sValues = "({$aInsert['VALUES']})";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user