Fix bug in item admin

The link can't go to the front-end since we are showing all content
items, even the ones that are not published.

--HG--
branch : dev
This commit is contained in:
Renaud Paquay
2010-11-25 18:28:54 -08:00
parent be9646daa1
commit f466efda4a

View File

@@ -34,7 +34,7 @@ else {
@foreach (IContent content in View.ContentItems) {
<tr>
<td>@content.ContentItem.ContentType.CamelFriendly()</td>
<td>@Html.ItemDisplayLink(content.ContentItem)</td>
<td>@Html.ItemEditLink(content.ContentItem)</td>
</tr>
}
</table>