mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
- Fixing 16273 : Missing IOrchardServices services in constructor
--HG-- branch : dev
This commit is contained in:
@@ -16,7 +16,9 @@ namespace Orchard.Tags.Controllers {
|
|||||||
public class AdminController : Controller {
|
public class AdminController : Controller {
|
||||||
private readonly ITagService _tagService;
|
private readonly ITagService _tagService;
|
||||||
|
|
||||||
public AdminController(ITagService tagService) {
|
public AdminController(IOrchardServices services, ITagService tagService)
|
||||||
|
{
|
||||||
|
Services = services;
|
||||||
_tagService = tagService;
|
_tagService = tagService;
|
||||||
T = NullLocalizer.Instance;
|
T = NullLocalizer.Instance;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user