Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/1222 log post author change #1549

Draft
wants to merge 8 commits into
base: develop
Choose a base branch
from
2 changes: 1 addition & 1 deletion classes/class-db.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function sanitize_record( $record ) {
return array_map(
function ( $value ) {
if ( ! is_array( $value ) ) {
return wp_strip_all_tags( $value );
return wp_kses_post( $value );
}

return $value;
Expand Down
Loading
Loading