Changeset 54560 for branches/4.5/src/wp-includes/comment.php
- Timestamp:
- 10/17/2022 06:02:28 PM (2 years ago)
- Location:
- branches/4.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.5
- Property svn:mergeinfo changed
/trunk merged: 54521-54523,54525-54527,54529-54530,54541
- Property svn:mergeinfo changed
-
branches/4.5/src/wp-includes/comment.php
r44849 r54560 1987 1987 } 1988 1988 1989 $filter_comment = false; 1990 if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) { 1991 $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' ); 1992 } 1993 1994 if ( $filter_comment ) { 1995 add_filter( 'pre_comment_content', 'wp_filter_kses' ); 1996 } 1997 1989 1998 // Escape data pulled from DB. 1990 1999 $comment = wp_slash($comment); … … 1996 2005 1997 2006 $commentarr = wp_filter_comment( $commentarr ); 2007 2008 if ( $filter_comment ) { 2009 remove_filter( 'pre_comment_content', 'wp_filter_kses' ); 2010 } 1998 2011 1999 2012 // Now extract the merged array.
Note: See TracChangeset
for help on using the changeset viewer.