mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
Move restore_current_blog in the correct position
This commit is contained in:
parent
7d71114f81
commit
e75e6e2c57
1 changed files with 4 additions and 4 deletions
|
@ -134,9 +134,9 @@ class Plugin_Name {
|
|||
|
||||
switch_to_blog( $blog_id );
|
||||
self::single_activate();
|
||||
}
|
||||
|
||||
restore_current_blog();
|
||||
restore_current_blog();
|
||||
}
|
||||
|
||||
} else {
|
||||
self::single_activate();
|
||||
|
@ -172,9 +172,9 @@ class Plugin_Name {
|
|||
switch_to_blog( $blog_id );
|
||||
self::single_deactivate();
|
||||
|
||||
}
|
||||
restore_current_blog();
|
||||
|
||||
restore_current_blog();
|
||||
}
|
||||
|
||||
} else {
|
||||
self::single_deactivate();
|
||||
|
|
Loading…
Reference in a new issue