Index: branches/RC/core/kernel/processors/main_processor.php =================================================================== diff -u -r10995 -r11149 --- branches/RC/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 10995) +++ branches/RC/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 11149) @@ -651,12 +651,12 @@ $module_key = mb_strtolower($module_name); if ($module_name == 'In-Portal') { - $module_prefix = $this->Application->IsAdmin() ? 'in-portal/' : $module_data['TemplatePath']; + // don't process In-Portal templates + continue; } - 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; @@ -1172,7 +1172,7 @@ $db->Query($sql); } } - + function Timestamp($params) { $format = isset($params['format']) ? $params['format'] : 'd.m.Y H:i:s';