Skip to content

Commit

Permalink
Onboarding categories bug fixd (&-related issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
zahardev committed May 7, 2024
1 parent e8957b4 commit 7fbeff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/classes/controllers/class-onboarding-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ protected function save_step( $step_number ) {
foreach ( $this->get_step_fields( $step_number ) as $field_id ) {
$val = filter_input( INPUT_POST, $field_id );
if ( $val ) {
$val = esc_html( strip_tags( $val ) );
$val = strip_tags( $val );
ssp_update_option( $field_id, $val, $series_id );
}
}
Expand Down

0 comments on commit 7fbeff7

Please sign in to comment.