PluginProbe
Elementor Website Builder – more than just a page builder / 3.35.0-dev4
Elementor Website Builder – more than just a page builder v3.35.0-dev4
4.3.2 4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 All 455 releases
← All changes | app/modules/onboarding/module.php +5 -1 4.3.2 → 3.35.0-dev4 View file →
@@ -385,9 +385,13 @@
385 385 if ( ! current_user_can( 'switch_themes' ) ) {
386 386 return $this->get_permission_error_response();
387 387 }
388 388
389 - $theme_slug = 'hello-elementor';
389 + $theme_slug = Utils::get_super_global_value( $_POST, 'theme_slug' ) ?? 'hello-biz'; // phpcs:ignore WordPress.Security.NonceVerification.Missing
390 + $allowed_themes = [ 'hello-elementor', 'hello-biz' ];
391 + if ( ! in_array( $theme_slug, $allowed_themes, true ) ) {
392 + $theme_slug = 'hello-biz';
393 + }
390 394
391 395 switch_theme( $theme_slug );
392 396
393 397 return [