Changeset 20974 for trunk/wp-includes/kses.php
- Timestamp:
- 06/01/2012 08:47:08 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/kses.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/kses.php
r20540 r20974 1364 1364 */ 1365 1365 function kses_init_filters() { 1366 // Normal filtering. 1367 add_filter('pre_comment_content', 'wp_filter_kses'); 1366 // Normal filtering 1368 1367 add_filter('title_save_pre', 'wp_filter_kses'); 1368 1369 // Comment filtering 1370 if ( current_user_can( 'unfiltered_html' ) ) 1371 add_filter( 'pre_comment_content', 'wp_filter_post_kses' ); 1372 else 1373 add_filter( 'pre_comment_content', 'wp_filter_kses' ); 1369 1374 1370 1375 // Post filtering … … 1387 1392 */ 1388 1393 function kses_remove_filters() { 1389 // Normal filtering. 1390 remove_filter('pre_comment_content', 'wp_filter_kses'); 1394 // Normal filtering 1391 1395 remove_filter('title_save_pre', 'wp_filter_kses'); 1396 1397 // Comment filtering 1398 remove_filter( 'pre_comment_content', 'wp_filter_post_kses' ); 1399 remove_filter( 'pre_comment_content', 'wp_filter_kses' ); 1392 1400 1393 1401 // Post filtering
Note: See TracChangeset
for help on using the changeset viewer.