Changeset 15823 for trunk/modules
- Timestamp:
- 01/04/12 05:02:30 (5 months ago)
- Location:
- trunk/modules/boonex
- Files:
-
- 3 edited
-
events/classes/BxEventsSearchResult.php (modified) (2 diffs)
-
groups/classes/BxGroupsSearchResult.php (modified) (3 diffs)
-
store/classes/BxStoreSearchResult.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/events/classes/BxEventsSearchResult.php
r15211 r15823 43 43 'owner' => array('value' => '', 'field' => 'ResponsibleID', 'operator' => '='), 44 44 'tag' => array('value' => '', 'field' => 'Tags', 'operator' => 'against'), 45 'category' => array('value' => '', 'field' => 'Category', 'operator' => '='), 45 'category' => array('value' => '', 'field' => 'Category', 'operator' => '=', 'table' => 'sys_categories'), 46 'category_type' => array('value' => '', 'field' => 'Type', 'operator' => '=', 'table' => 'sys_categories'), 46 47 'country' => array('value' => '', 'field' => 'Country', 'operator' => '='), 47 48 'public' => array('value' => '', 'field' => 'allow_view_event_to', 'operator' => '='), … … 189 190 'joinFields' => '', 190 191 ); 192 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 191 193 $this->aCurrent['restriction']['category']['value'] = $sValue; 192 $this->aCurrent['restriction']['category']['table'] = 'sys_categories';193 194 $sValue = $GLOBALS['MySQL']->unescape($sValue); 194 195 $this->sBrowseUrl = "browse/category/" . title2uri($sValue); -
trunk/modules/boonex/groups/classes/BxGroupsSearchResult.php
r15733 r15823 46 46 'tag' => array('value' => '', 'field' => 'tags', 'operator' => 'against'), 47 47 'category' => array('value' => '', 'field' => 'Category', 'operator' => '=', 'table' => 'sys_categories'), 48 'category_type' => array('value' => '', 'field' => 'Type', 'operator' => '=', 'table' => 'sys_categories'), 48 49 'public' => array('value' => '', 'field' => 'allow_view_group_to', 'operator' => '='), 49 50 ), … … 103 104 ); 104 105 106 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 105 107 $this->aCurrent['restriction']['category']['value'] = $sValue2; 106 108 if (is_array($sValue2)) { … … 197 199 'joinFields' => '', 198 200 ); 201 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 199 202 $this->aCurrent['restriction']['category']['value'] = $sValue; 200 203 $sValue = $GLOBALS['MySQL']->unescape($sValue); -
trunk/modules/boonex/store/classes/BxStoreSearchResult.php
r15211 r15823 44 44 'tag' => array('value' => '', 'field' => 'tags', 'operator' => 'against'), 45 45 'category' => array('value' => '', 'field' => 'Category', 'operator' => '=', 'table' => 'sys_categories'), 46 'category_type' => array('value' => '', 'field' => 'Type', 'operator' => '=', 'table' => 'sys_categories'), 46 47 'public' => array('value' => '', 'field' => 'allow_view_product_to', 'operator' => '='), 47 48 ), … … 100 101 'joinFields' => '', 101 102 ); 102 103 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 103 104 $this->aCurrent['restriction']['category']['value'] = $sValue2; 104 105 if (is_array($sValue2)) { … … 148 149 'joinFields' => '', 149 150 ); 151 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 150 152 $this->aCurrent['restriction']['category']['value'] = $sValue; 151 153 $sValue = $GLOBALS['MySQL']->unescape($sValue);
Note: See TracChangeset
for help on using the changeset viewer.