This commit is contained in:
Yuri Karamian
2026-01-25 23:11:41 +01:00
parent 79b0dfa371
commit 94a7670c80
3 changed files with 192 additions and 1 deletions
+3 -1
View File
@@ -83,6 +83,7 @@ final class WP_Security_Pack {
if ( is_admin() ) {
require_once WPSP_PLUGIN_DIR . 'includes/class-wpsp-admin.php';
require_once WPSP_PLUGIN_DIR . 'includes/class-wpsp-updater.php';
}
}
@@ -136,7 +137,8 @@ final class WP_Security_Pack {
$this->components['login_protection'] = new WPSP_Login_Protection();
if ( is_admin() ) {
$this->components['admin'] = new WPSP_Admin();
$this->components['admin'] = new WPSP_Admin();
$this->components['updater'] = new WPSP_Updater();
}
}