diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-07-18 22:55:53 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-07-18 22:55:53 +0000 |
commit | 3ca3ecdd45838debc75d6feba2a452ef4d91431a (patch) | |
tree | e4f8d68d65579d0b4463a6be2aa39982be9878de /h-source/Application/Models/NotebooksModel.php | |
parent | cfe669be36d115c3bc4c98c8215c51480185e64e (diff) |
deleted pages are no more visible on the filters
Diffstat (limited to 'h-source/Application/Models/NotebooksModel.php')
-rw-r--r-- | h-source/Application/Models/NotebooksModel.php | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/h-source/Application/Models/NotebooksModel.php b/h-source/Application/Models/NotebooksModel.php index 00ab64d..2172f52 100644 --- a/h-source/Application/Models/NotebooksModel.php +++ b/h-source/Application/Models/NotebooksModel.php @@ -40,13 +40,8 @@ class NotebooksModel extends GenericModel { 'comm_year' => gtext("year"), 'subtype' => gtext("subtype"), ); - - $this->_popupWhere = array( - 'vendor' => 'type="notebook" and deleted="no"', - 'compatibility' => 'type="notebook" and deleted="no"', - 'comm_year' => 'type="notebook" and deleted="no"', - 'subtype' => 'type="notebook" and deleted="no"', - ); + + $this->createPopupWhere('vendor,compatibility,comm_year,subtype'); $this->diffFields = array( 'vendor' => gtext("vendor"), |