Skip to content

Commit dfcfdbe

Browse files
committed
ilnt fix
1 parent ebcbcbc commit dfcfdbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

includes/Services/StatusService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static function track(): void {
186186
}
187187

188188
// Ignore if the request is not for the onboarding page.
189-
if ( isset( $_GET['page'] ) && WP_Admin::$slug === \sanitize_text_field( $_GET['page'] ) ) {
189+
if ( isset( $_GET['page'] ) && \sanitize_text_field( $_GET['page'] ) === WP_Admin::$slug ) {
190190
return;
191191
}
192192

@@ -201,7 +201,7 @@ public static function track(): void {
201201
*/
202202
public static function save_site_info(): void {
203203
$site_info = array();
204-
204+
205205
// Get experience level and site type from ReduxStateService
206206
$data = ReduxStateService::get( 'input' );
207207
$site_info['experience_level'] = $data['experienceLevel'] ?? 3;

0 commit comments

Comments
 (0)