Feb 17, 2012 at 2:50 PM
Edited Feb 17, 2012 at 2:56 PM
|
deleting the app_data folder and dropping in the module is still causing problems. I get 7 errors when trying to build, all relating to Orchard.Gallery.Handlers.UserEventHandler does not implemnt interface member...
Orchard.Users.Events.IUserEventHandler.AccessDenied
Orchard.Users.Events.IUserEventHandler.Approved
Orchard.Users.Events.IUserEventHandler.ChangedPassword
Orchard.Users.Events.IUserEventHandler.ConfirmedEmail
Orchard.Users.Events.IUserEventHandler.LoggedIn
Orchard.Users.Events.IUserEventHandler.LoggedOut
Orchard.Users.Events.IUserEventHandler.SentChallengeEmail
I tried just adding stubs for these, but then I get failures on CategoryGetter in Orchard.Gallery on this line:
_taxonomyService.GetAssociatedContentItemsId and
PackagesController on this line:
return _taxonomyService.GetTermBySlug(taxonomy.Id, packageType);
It seems like the gallery is relying on an old version of the taxonomy module...
|