U4-2416 Missing colon in file ListChildPagesOrderedByProperty causes Web site not to run

This commit is contained in:
Sebastiaan Janssen
2013-06-21 15:25:46 +02:00
parent 86ce48ddc8
commit 0f4b1752e0

View File

@@ -10,7 +10,7 @@
@* Get the property alias we want to filter on from the macro parameter *@
var propertyAlias = Parameter.propertyAlias;
var selection = Model.Children.Where("Visible").OrderBy(propertyAlias)
var selection = Model.Children.Where("Visible").OrderBy(propertyAlias);
}