Index: branches/RC/core/units/general/helpers/search_helper.php =================================================================== diff -u -N -r11538 -r11711 --- branches/RC/core/units/general/helpers/search_helper.php (.../search_helper.php) (revision 11538) +++ branches/RC/core/units/general/helpers/search_helper.php (.../search_helper.php) (revision 11711) @@ -331,7 +331,7 @@ // update "custom filter" with values from submit: begin $view_name = $this->Application->RecallVar($event->getPrefixSpecial().'_current_view'); - $custom_filters = $this->Application->RecallPersistentVar($event->getPrefixSpecial().'_custom_filter.'.$view_name, ALLOW_DEFAULT_SETTINGS); + $custom_filters = $this->Application->RecallPersistentVar($event->getPrefixSpecial().'_custom_filter.'.$view_name/*, ALLOW_DEFAULT_SETTINGS*/); if ($custom_filters) { $custom_filters = unserialize($custom_filters); $custom_filter = isset($custom_filters[$grid_name]) ? $custom_filters[$grid_name] : Array (); @@ -414,7 +414,7 @@ } $view_name = $this->Application->RecallVar($prefix_special . '_current_view'); - $custom_filters = $this->Application->RecallPersistentVar($prefix_special . '_custom_filter.' . $view_name, ALLOW_DEFAULT_SETTINGS); + $custom_filters = $this->Application->RecallPersistentVar($prefix_special . '_custom_filter.' . $view_name/*, ALLOW_DEFAULT_SETTINGS*/); if (!$custom_filters) { // filters not defined for given prefix $cache[$cache_key] = false;