Remove duplicate and unused sDate variables from application and version classes

This commit is contained in:
Chris Morgan
2007-06-16 04:55:34 +00:00
committed by WineHQ
parent 00ccd7b18b
commit a41b65c25e
2 changed files with 0 additions and 3 deletions

View File

@@ -66,7 +66,6 @@ class Application {
$this->iCatId = $oRow->catId; $this->iCatId = $oRow->catId;
$this->iSubmitterId = $oRow->submitterId; $this->iSubmitterId = $oRow->submitterId;
$this->sSubmitTime = $oRow->submitTime; $this->sSubmitTime = $oRow->submitTime;
$this->sDate = $oRow->submitTime;
$this->sName = $oRow->appName; $this->sName = $oRow->appName;
$this->sKeywords = $oRow->keywords; $this->sKeywords = $oRow->keywords;
$this->sDescription = $oRow->description; $this->sDescription = $oRow->description;

View File

@@ -30,7 +30,6 @@ class Version {
var $sTestedRating; var $sTestedRating;
var $sSubmitTime; var $sSubmitTime;
var $iSubmitterId; var $iSubmitterId;
var $sDate;
var $sQueued; var $sQueued;
var $sLicense; var $sLicense;
var $iMaintainerRequest; /* Temporary variable for version submisson. var $iMaintainerRequest; /* Temporary variable for version submisson.
@@ -65,7 +64,6 @@ class Version {
$this->iAppId = $oRow->appId; $this->iAppId = $oRow->appId;
$this->iSubmitterId = $oRow->submitterId; $this->iSubmitterId = $oRow->submitterId;
$this->sSubmitTime = $oRow->submitTime; $this->sSubmitTime = $oRow->submitTime;
$this->sDate = $oRow->submitTime;
$this->sName = $oRow->versionName; $this->sName = $oRow->versionName;
$this->sDescription = $oRow->description; $this->sDescription = $oRow->description;
$this->sTestedRelease = $oRow->maintainer_release; $this->sTestedRelease = $oRow->maintainer_release;