We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a7938d + 3bbae2d commit 17767a6Copy full SHA for 17767a6
1 file changed
classes/ui/class-branding.php
@@ -38,6 +38,9 @@ public function get_branding_id(): int {
38
if ( \defined( 'PROGRESS_PLANNER_BRANDING_ID' ) ) {
39
return \constant( 'PROGRESS_PLANNER_BRANDING_ID' );
40
}
41
+ if ( isset( $_GET['pp_branding_id'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
42
+ return (int) $_GET['pp_branding_id']; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
43
+ }
44
45
$hostname = (string) \gethostname();
46
if ( \str_contains( $hostname, 'siteground' ) ) {
0 commit comments