mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
Fixing a cut and paste bug
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042768
This commit is contained in:
@@ -58,10 +58,10 @@ namespace Orchard.Models.Driver {
|
|||||||
if (OnCreating != null) OnCreating(context, instance);
|
if (OnCreating != null) OnCreating(context, instance);
|
||||||
}
|
}
|
||||||
protected override void Created(CreateContentContext context, TPart instance) {
|
protected override void Created(CreateContentContext context, TPart instance) {
|
||||||
if (OnCreating != null) OnCreated(context, instance);
|
if (OnCreated != null) OnCreated(context, instance);
|
||||||
}
|
}
|
||||||
protected override void Loading(LoadContentContext context, TPart instance) {
|
protected override void Loading(LoadContentContext context, TPart instance) {
|
||||||
if (OnLoaded != null) OnLoading(context, instance);
|
if (OnLoading != null) OnLoading(context, instance);
|
||||||
}
|
}
|
||||||
protected override void Loaded(LoadContentContext context, TPart instance) {
|
protected override void Loaded(LoadContentContext context, TPart instance) {
|
||||||
if (OnLoaded != null) OnLoaded(context, instance);
|
if (OnLoaded != null) OnLoaded(context, instance);
|
||||||
|
Reference in New Issue
Block a user