Templates that have a space in the alias will be created without spaces in the
file name, when determining if the template exists, remove spaces from the alias
This commit is contained in:
@@ -43,7 +43,7 @@ namespace Umbraco.Web.Routing
|
||||
return;
|
||||
}
|
||||
|
||||
var templateAlias = _publishedContentRequest.Template.Alias;
|
||||
var templateAlias = _publishedContentRequest.Template.Alias.Replace(" ", string.Empty);
|
||||
|
||||
Func<DirectoryInfo, string, string[], RenderingEngine, bool> determineEngine =
|
||||
(directory, alias, extensions, renderingEngine) =>
|
||||
|
||||
Reference in New Issue
Block a user