Fixed display of gallery feeds in drop down filters

- http://orchardqa.codeplex.com/workitem/86

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-10-18 15:52:54 -07:00
parent 299b2621f7
commit f3b66f2988
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
<select id="sourceId" name="sourceId">
@Html.SelectOption("", Model.SelectedSource == null, T("Any (show all feeds)").ToString())
@foreach (var source in Model.Sources) {
Html.SelectOption(source.Id, Model.SelectedSource != null && Model.SelectedSource.Id == source.Id, source.FeedTitle);
@Html.SelectOption(source.Id, Model.SelectedSource != null && Model.SelectedSource.Id == source.Id, source.FeedTitle)
}
</select>
<button type="submit">@T("Apply")</button>