Record submitter id when queueing apps

This commit is contained in:
Jonathan Ernst
2005-02-17 01:18:13 +00:00
committed by WineHQ
parent 9ff4bc7771
commit 5c5148534d
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ class Application {
'webPage' => $sWebpage,
'vendorId' => $iVendorId,
'catId' => $iCatId,
'submitterId'=> $_REQUEST['current']->iUserId,
'submitterId'=> $_SESSION['current']->iUserId,
'queued' => $this->bQueued ));
$sFields = "({$aInsert['FIELDS']})";
$sValues = "({$aInsert['VALUES']})";

View File

@@ -130,7 +130,7 @@ class Version {
'maintainer_release'=> $sTestedRelease,
'maintainer_rating' => $sTestedRating,
'appId' => $iAppId,
'submitterId' => $_REQUEST['current']->iUserId,
'submitterId' => $_SESSION['current']->iUserId,
'queued' => $this->bQueued ));
$sFields = "({$aInsert['FIELDS']})";
$sValues = "({$aInsert['VALUES']})";