diff --git a/src/Orchard.Web/Modules/Orchard.Modules/Views/Admin/Index.cshtml b/src/Orchard.Web/Modules/Orchard.Modules/Views/Admin/Index.cshtml
index fbfe4d9d9..985b65df5 100644
--- a/src/Orchard.Web/Modules/Orchard.Modules/Views/Admin/Index.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Modules/Views/Admin/Index.cshtml
@@ -25,7 +25,10 @@
- @T("Features: {0}", MvcHtmlString.Create(string.Join(", ", module.Features.Select(f => Html.Link(string.IsNullOrEmpty(f.Name) ? f.Id : f.Name, string.Format("{0}#{1}", Url.Action("features", new { area = "Orchard.Modules" }), f.Id.AsFeatureId(n => T(n)))).ToString()).OrderBy(s => s).ToArray())))
- | @T("Author: {0}", !string.IsNullOrEmpty(module.Author) ? module.Author : T("Unknown").ToString())
- - | @T("Website: {0}", !string.IsNullOrEmpty(module.WebSite) ? module.WebSite : "http://orchardproject.net")
+ - | @T("Website: ")
+ @if (!string.IsNullOrEmpty(module.WebSite)) { @module.WebSite }
+ else { @T("Unknown").ToString() }
+
diff --git a/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Modules.cshtml b/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Modules.cshtml
index c1615dd7b..bdb2ce7ad 100644
--- a/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Modules.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Modules.cshtml
@@ -35,8 +35,11 @@
@(item.Description == null ? T("(No description").Text : item.Description)
- @T("Last Updated: {0}", DateTime.Now.ToLocalTime())
- - | @T("Author: {0}", item.Authors)
- - | @T("Project Url: ")@item.ProjectUrl
+ - | @T("Author: {0}", !string.IsNullOrEmpty(item.Authors) ? item.Authors : T("Unknown").ToString())
+ - | @T("Website: ")
+ @if(!string.IsNullOrEmpty(item.ProjectUrl)) { @item.ProjectUrl }
+ else { @T("Unknown").ToString() }
+
}
diff --git a/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Themes.cshtml b/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Themes.cshtml
index c8479d315..0ff88c9bc 100644
--- a/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Themes.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Packaging/Views/Gallery/Themes.cshtml
@@ -35,8 +35,11 @@
@(item.Description == null ? T("(No description").Text : item.Description)
- @T("Last Updated: {0}", DateTime.Now.ToLocalTime())
- - | @T("Author: {0}", item.Authors)
- - | @T("Project Url: ")@item.ProjectUrl
+ - | @T("Author: {0}", !string.IsNullOrEmpty(item.Authors) ? item.Authors : T("Unknown").ToString())
+ - | @T("Website: ")
+ @if(!string.IsNullOrEmpty(item.ProjectUrl)) { @item.ProjectUrl }
+ else { @T("Unknown").ToString() }
+
}