Index: trunk/core/kernel/processors/main_processor.php =================================================================== diff -u -N -r6656 -r6669 --- trunk/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 6656) +++ trunk/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 6669) @@ -35,6 +35,9 @@ { if ($this->Application->IsAdmin()) { $module = isset($params['module']) ? $params['module'] : 'core'; + if ($module == 'in-portal') { + $module = 'kernel'; + } $path = preg_replace('/\/(.*?)\/(.*)/', $module.'/\\2', THEMES_PATH); // remove leading slash + substitute module } else { @@ -554,7 +557,7 @@ $module_key = strtolower($module_name); if ($module_name == 'In-Portal') { - $module_prefix = ''; + $module_prefix = $this->Application->IsAdmin() ? 'in-portal/' : ''; } else { $module_prefix = $this->Application->IsAdmin() ? $module_key.'/' : $module_data['TemplatePath'].'/';