- Timestamp:
- 01/04/12 04:59:54 (5 months ago)
- Location:
- tags/7.0/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
-
tags/7.0/modules/boonex/events/classes/BxEventsSearchResult.php
r15200 r15822 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 ); 191 $this->aCurrent['restriction']['category ']['value'] = $sValue;192 $this->aCurrent['restriction']['category'][' table'] = 'sys_categories';192 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 193 $this->aCurrent['restriction']['category']['value'] = $sValue; 193 194 $sValue = $GLOBALS['MySQL']->unescape($sValue); 194 195 $this->sBrowseUrl = "browse/category/" . title2uri($sValue); -
tags/7.0/modules/boonex/groups/classes/BxGroupsSearchResult.php
r15200 r15822 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_group_to', 'operator' => '='), 47 48 ), … … 101 102 ); 102 103 104 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 103 105 $this->aCurrent['restriction']['category']['value'] = $sValue2; 104 106 if (is_array($sValue2)) { … … 195 197 'joinFields' => '', 196 198 ); 199 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 197 200 $this->aCurrent['restriction']['category']['value'] = $sValue; 198 201 $sValue = $GLOBALS['MySQL']->unescape($sValue); -
tags/7.0/modules/boonex/store/classes/BxStoreSearchResult.php
r15200 r15822 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 ), … … 101 102 ); 102 103 104 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 103 105 $this->aCurrent['restriction']['category']['value'] = $sValue2; 104 106 if (is_array($sValue2)) { … … 148 150 'joinFields' => '', 149 151 ); 152 $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; 150 153 $this->aCurrent['restriction']['category']['value'] = $sValue; 151 154 $sValue = $GLOBALS['MySQL']->unescape($sValue);
Note: See TracChangeset
for help on using the changeset viewer.