--HG--
branch : dev
This commit is contained in:
Erik Porter
2010-03-04 10:56:49 -08:00

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