1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-02 19:33:16 +03:00

Merge pull request #186 from grappler/activate-deactivate

Move restore_current_blog in the correct position
This commit is contained in:
Tom McFarlin 2014-05-31 22:05:10 -04:00
commit 5efc89dc3b

View file

@ -134,9 +134,9 @@ class Plugin_Name {
switch_to_blog( $blog_id );
self::single_activate();
}
restore_current_blog();
}
} else {
self::single_activate();
@ -172,10 +172,10 @@ class Plugin_Name {
switch_to_blog( $blog_id );
self::single_deactivate();
}
restore_current_blog();
}
} else {
self::single_deactivate();
}