Changeset 54554 for branches/4.2/src/wp-includes/comment.php
- Timestamp:
- 10/17/2022 05:55:03 PM (2 years ago)
- Location:
- branches/4.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2
- Property svn:mergeinfo changed
/trunk merged: 54521-54523,54525,54527,54529-54530,54541
- Property svn:mergeinfo changed
-
branches/4.2/src/wp-includes/comment.php
r32367 r54554 2427 2427 } 2428 2428 2429 $filter_comment = false; 2430 if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) { 2431 $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' ); 2432 } 2433 2434 if ( $filter_comment ) { 2435 add_filter( 'pre_comment_content', 'wp_filter_kses' ); 2436 } 2437 2429 2438 // Escape data pulled from DB. 2430 2439 $comment = wp_slash($comment); … … 2436 2445 2437 2446 $commentarr = wp_filter_comment( $commentarr ); 2447 2448 if ( $filter_comment ) { 2449 remove_filter( 'pre_comment_content', 'wp_filter_kses' ); 2450 } 2438 2451 2439 2452 // Now extract the merged array.
Note: See TracChangeset
for help on using the changeset viewer.