diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-12 21:51:06 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-12 21:51:06 +0000 |
commit | 3c1f2dfdb82656dc47a1cb467d03e09e52792f24 (patch) | |
tree | 490a63fcaab8213346bb80657e61cde2245bf010 /h-source/Application/Models/ThreegcardsModel.php | |
parent | 1b84f9bcf2d480431608d8fb08d0671bc945211d (diff) |
h-source:added the other_names entry
Diffstat (limited to 'h-source/Application/Models/ThreegcardsModel.php')
-rw-r--r-- | h-source/Application/Models/ThreegcardsModel.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/h-source/Application/Models/ThreegcardsModel.php b/h-source/Application/Models/ThreegcardsModel.php index 3579e01..5b0a7e7 100644 --- a/h-source/Application/Models/ThreegcardsModel.php +++ b/h-source/Application/Models/ThreegcardsModel.php @@ -57,6 +57,7 @@ class ThreegcardsModel extends GenericModel $this->diffFields = array( 'vendor' => gtext("vendor"), 'model' => gtext('model name'), + 'other_names' => gtext('possible other names of the device'), 'pci_id' => gtext("VendorID:ProductID code of the device"), 'comm_year' => gtext('year of commercialization'), 'interface' => gtext("interface"), @@ -67,7 +68,7 @@ class ThreegcardsModel extends GenericModel 'description' => gtext('Description'), ); - $this->fieldsWithBreaks = array(gtext('Description')); + $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device')); parent::__construct(); } |