diff options
Diffstat (limited to 'h-source/Application/Controllers/DownloadController.php')
-rw-r--r-- | h-source/Application/Controllers/DownloadController.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/h-source/Application/Controllers/DownloadController.php b/h-source/Application/Controllers/DownloadController.php index 5fa11b2..7994329 100644 --- a/h-source/Application/Controllers/DownloadController.php +++ b/h-source/Application/Controllers/DownloadController.php @@ -136,7 +136,7 @@ class DownloadController extends BaseController $xml .= "\t\t<it_works>".$row['hardware']['video_card_works']."</it_works>\n"; } - if ($type === 'acquisition-card' or $type === 'modem') + if ($type === 'acquisition-card' or $type === 'modem' or $type === 'RAID-adapter') { $xml .= "\t\t<it_works>".$row['hardware']['compatibility']."</it_works>\n"; } @@ -262,4 +262,8 @@ class DownloadController extends BaseController $this->printXml($lang, array('type'=>'modem','-deleted'=>'no')); } + public function raidadapters($lang = 'en') + { + $this->printXml($lang, array('type'=>'RAID-adapter','-deleted'=>'no')); + } }
\ No newline at end of file |