Index: branches/RC/core/kernel/processors/main_processor.php =================================================================== diff -u -r11149 -r11171 --- branches/RC/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 11149) +++ branches/RC/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 11171) @@ -651,12 +651,18 @@ $module_key = mb_strtolower($module_name); if ($module_name == 'In-Portal') { - // don't process In-Portal templates - continue; + if ($this->Application->IsAdmin()) { + // don't process In-Portal templates in admin + continue; + } + + // Front-End still relies on In-Portal module + $module_prefix = $module_data['TemplatePath']; } + else { + $module_prefix = $this->Application->IsAdmin() ? $module_key.'/' : rtrim($module_data['TemplatePath'], '/').'/'; + } - $module_prefix = $this->Application->IsAdmin() ? $module_key.'/' : rtrim($module_data['TemplatePath'], '/').'/'; - $block_params['t'] = $module_prefix.$this->SelectParam($params, $module_key.'_template,'.$module_key.'_t,template,t'); if ($block_params['t'] == $current_template || in_array($module_data['Var'], $skip_prefixes)) continue;