ChangeSet ID: 31210 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/06/15 23:55:34
Modified files: include : application.php version.php
Log message: Chris Morgan cmorgan@alum.wpi.edu Remove duplicate and unused sDate variables from application and version classes
Patch: http://cvs.winehq.org/patch.py?id=31210
Old revision New revision Changes Path 1.115 1.116 +0 -1 appdb/include/application.php 1.131 1.132 +0 -2 appdb/include/version.php
Index: appdb/include/application.php diff -u -p appdb/include/application.php:1.115 appdb/include/application.php:1.116 --- appdb/include/application.php:1.115 16 Jun 2007 4:55:34 -0000 +++ appdb/include/application.php 16 Jun 2007 4:55:34 -0000 @@ -66,7 +66,6 @@ class Application { $this->iCatId = $oRow->catId; $this->iSubmitterId = $oRow->submitterId; $this->sSubmitTime = $oRow->submitTime; - $this->sDate = $oRow->submitTime; $this->sName = $oRow->appName; $this->sKeywords = $oRow->keywords; $this->sDescription = $oRow->description; Index: appdb/include/version.php diff -u -p appdb/include/version.php:1.131 appdb/include/version.php:1.132 --- appdb/include/version.php:1.131 16 Jun 2007 4:55:34 -0000 +++ appdb/include/version.php 16 Jun 2007 4:55:34 -0000 @@ -30,7 +30,6 @@ class Version { var $sTestedRating; var $sSubmitTime; var $iSubmitterId; - var $sDate; var $sQueued; var $sLicense; var $iMaintainerRequest; /* Temporary variable for version submisson. @@ -65,7 +64,6 @@ class Version { $this->iAppId = $oRow->appId; $this->iSubmitterId = $oRow->submitterId; $this->sSubmitTime = $oRow->submitTime; - $this->sDate = $oRow->submitTime; $this->sName = $oRow->versionName; $this->sDescription = $oRow->description; $this->sTestedRelease = $oRow->maintainer_release;