Index: branches/5.2.x/core/kernel/managers/url_manager.php =================================================================== diff -u -N -r15137 -r15278 --- branches/5.2.x/core/kernel/managers/url_manager.php (.../url_manager.php) (revision 15137) +++ branches/5.2.x/core/kernel/managers/url_manager.php (.../url_manager.php) (revision 15278) @@ -1,6 +1,6 @@ structureTemplateMapping); + $physical_template = array_search($seo_template, $this->structureTemplateMapping); + + if ( $physical_template === false || substr($physical_template, 0, 3) == 'id:' ) { + // physical template from ".smsignore" file OR virtual template + return $seo_template; + } + + list ($physical_template,) = explode(':', $physical_template, 2); // template_path:theme_id => seo_template + + return $physical_template; } /**