Skip to content

Commit

Permalink
Fix stupid class renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximeCulea authored Dec 15, 2017
1 parent 9e7ecdc commit 7d6e360
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions classes/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ public static function activate() {
// For safety, delete existing data
DB::get_instance()->delete_blog( get_current_blog_id() );

Cron::schedule();
Crons::schedule();
}

/**
* Plugin deactivation
*/
public static function deactivate() {
DB::get_instance()->delete_blog( get_current_blog_id() );
Cron::unschedule();
Crons::unschedule();
}
}
}

0 comments on commit 7d6e360

Please sign in to comment.