encoding comments, add id to schedule export

This commit is contained in:
2025-08-21 16:49:38 +02:00
parent 8743922705
commit d6f567d9ea
2 changed files with 13 additions and 8 deletions

View File

@@ -134,13 +134,13 @@
$justification_ascii = "EXTENDED";
}
$comment_author_name_json = json_encode( $comment_author_name );
$comment_author_name_json = json_encode( htmlentities( $comment_author_name ) );
$comment_title_json = json_encode( $comment_title );
$comment_title_json = json_encode( htmlentities( $comment_title ) );
$comment_text_json = json_encode( $comment_text );
$comment_text_json = json_encode( htmlentities( $comment_text ) );
$justification_json = json_encode( $justification );
$justification_json = json_encode( htmlentities( $justification ) );
$comment_timestamp_json = json_encode( $comment_timestamp );