mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Updating NuGet. Fixing small redirect issue on gallery themes.
This commit is contained in:
parent
164397cfb8
commit
bab59c1400
Binary file not shown.
@ -197,5 +197,13 @@ namespace Orchard.Packaging.Services {
|
||||
}
|
||||
return path;
|
||||
}
|
||||
|
||||
public DateTimeOffset GetCreated(string path) {
|
||||
if (this.DirectoryExists(path)) {
|
||||
return Directory.GetCreationTimeUtc(this.GetFullPath(path));
|
||||
}
|
||||
|
||||
return File.GetCreationTimeUtc(this.GetFullPath(path));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -27,7 +27,7 @@
|
||||
</div>
|
||||
|
||||
<div class="related">
|
||||
@Html.ActionLink(T("Install").ToString(), "Install", new RouteValueDictionary {{"packageId", item.PackageId}, {"version", item.Version}, {"sourceId", item.Source.Id}, {"cameFrom", "Modules"}})@T(" | ")
|
||||
@Html.ActionLink(T("Install").ToString(), "Install", new RouteValueDictionary {{"packageId", item.PackageId}, {"version", item.Version}, {"sourceId", item.Source.Id}, {"cameFrom", "Themes"}})@T(" | ")
|
||||
<a href="@item.PackageStreamUri">@T("Download")</a>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user