Index: branches/RC/core/kernel/processors/main_processor.php =================================================================== diff -u -N -r11648 -r11682 --- branches/RC/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 11648) +++ branches/RC/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 11682) @@ -661,12 +661,13 @@ $replace_main = isset($params['replace_m']) && $params['replace_m']; $skip_prefixes = isset($params['skip_prefixes']) ? explode(',', $params['skip_prefixes']) : Array(); + $cms_mode = $this->Application->GetVar('admin'); foreach ($this->Application->ModuleInfo as $module_name => $module_data) { $module_key = mb_strtolower($module_name); if ($module_name == 'In-Portal') { - if ($this->Application->IsAdmin()) { + if (!$cms_mode && $this->Application->IsAdmin()) { // don't process In-Portal templates in admin continue; }