Index: branches/RC/core/kernel/parser/template.php =================================================================== diff -u -r10098 -r11214 --- branches/RC/core/kernel/parser/template.php (.../template.php) (revision 10098) +++ branches/RC/core/kernel/parser/template.php (.../template.php) (revision 11214) @@ -129,6 +129,10 @@ } $path = MODULES_PATH.'/'.mb_strtolower($first_dir).'/admin_templates'; } + elseif (preg_match('/^theme:(.*)/', $first_dir, $regs)) { + // ability to use Front-End templates in admin + $path = FULL_PATH . '/themes/' . $regs[1]; + } else { $path = $this->BasePath; $module_filename = $first_dir.'/'.$module_filename;