Changeset 1763
- Timestamp:
- 2/8/2010 5:58:22 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/website/scripts/updates.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/website/scripts/updates.php
r1761 r1763 3 3 { 4 4 protected abstract function GetVersion(); 5 protected abstract function Get Downloads($clientVersion);5 protected abstract function GetUpdates($clientVersion); 6 6 protected abstract function OutputBodyXml($clientVersion); 7 7 … … 20 20 } 21 21 22 protected function Output Downloads($clientVersion)22 protected function OutputUpdates($clientVersion) 23 23 { 24 $query = $this->Get Downloads($clientVersion);24 $query = $this->GetUpdates($clientVersion); 25 25 26 26 $lastItemType = null; … … 65 65 } 66 66 67 protected function Get Downloads($clientVersion)67 protected function GetUpdates($clientVersion) 68 68 { 69 69 //Prepare the list of updates … … 102 102 { 103 103 $this->OutputMirrors(); 104 $this->Output Downloads($clientVersion);104 $this->OutputUpdates($clientVersion); 105 105 } 106 106 } … … 113 113 } 114 114 115 protected function Get Downloads($clientVersion)115 protected function GetUpdates($clientVersion) 116 116 { 117 117 //Prepare the list of updates … … 140 140 protected function OutputBodyXml($clientVersion) 141 141 { 142 $this->Output Downloads($clientVersion);142 $this->OutputUpdates($clientVersion); 143 143 } 144 144 }
Note: See TracChangeset
for help on using the changeset viewer.
