ChangeSet ID: 31092 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/04/23 18:32:30
Modified files: include : vendor.php
Log message: Alexander Nicolaysen Sørnes alex@thehandofagony.com Add vendor->sQueued class variable. Not currently used but adding it keeps the vendor class consistent with other classes.
Patch: http://cvs.winehq.org/patch.py?id=31092
Old revision New revision Changes Path 1.23 1.24 +2 -0 appdb/include/vendor.php
Index: appdb/include/vendor.php diff -u -p appdb/include/vendor.php:1.23 appdb/include/vendor.php:1.24 --- appdb/include/vendor.php:1.23 23 Apr 2007 23:32:30 -0000 +++ appdb/include/vendor.php 23 Apr 2007 23:32:30 -0000 @@ -10,6 +10,7 @@ class Vendor { var $iVendorId; var $sName; var $sWebpage; + var $sQueued; var $aApplicationsIds; // an array that contains the appId of every application linked to this vendor
/** @@ -37,6 +38,7 @@ class Vendor { $this->iVendorId = $iVendorId; $this->sName = $oRow->vendorName; $this->sWebpage = $oRow->vendorURL; + $this->sQueued = $oRow->queued; }
/*