From a5492e199a21d240e904e1c9f3391a3f6735271d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Mon, 23 Apr 2007 23:32:30 +0000 Subject: [PATCH] Add vendor->sQueued class variable. Not currently used but adding it keeps the vendor class consistent with other classes. --- include/vendor.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/vendor.php b/include/vendor.php index 569146f..b321417 100644 --- a/include/vendor.php +++ b/include/vendor.php @@ -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; } /*