- Fixing 16273 : Missing IOrchardServices services in constructor

--HG--
branch : dev
This commit is contained in:
Andrew Ma
2010-03-03 00:53:33 -08:00
parent 7d52b4e7c9
commit 615703b304

View File

@@ -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;
} }