Index: branches/RC/core/units/general/cat_event_handler.php =================================================================== diff -u -r11392 -r11394 --- branches/RC/core/units/general/cat_event_handler.php (.../cat_event_handler.php) (revision 11392) +++ branches/RC/core/units/general/cat_event_handler.php (.../cat_event_handler.php) (revision 11394) @@ -2416,9 +2416,9 @@ } // add EditorsPick to ForcedSorting if needed - $config_mapping = $this->Appication->getUnitOption($event->Prefix, 'ConfigMapping'); + $config_mapping = $this->Application->getUnitOption($event->Prefix, 'ConfigMapping'); if (array_key_exists('ForceEditorPick', $config_mapping) && $this->Application->ConfigValue($config_mapping['ForceEditorPick'])) { - $list_sortings = $this->Appication->getUnitOption($event->Prefix, 'ListSortings'); + $list_sortings = $this->Application->getUnitOption($event->Prefix, 'ListSortings'); $new_forced_sorting = Array ('EditorsPick' => 'DESC'); @@ -2429,7 +2429,7 @@ } $list_sortings['']['ForcedSorting'] = $new_forced_sorting; - $this->Appication->setUnitOption($event->Prefix, 'ListSortings', $list_sortings); + $this->Application->setUnitOption($event->Prefix, 'ListSortings', $list_sortings); } }