Changeset 51657 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 08/26/2021 12:57:08 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r51624 r51657 3114 3114 $text = preg_replace_callback( 3115 3115 '|<a (.+?)>|i', 3116 function( $matches ) {3116 static function( $matches ) { 3117 3117 return wp_rel_callback( $matches, 'nofollow' ); 3118 3118 }, … … 3148 3148 $text = preg_replace_callback( 3149 3149 '|<a (.+?)>|i', 3150 function( $matches ) {3150 static function( $matches ) { 3151 3151 return wp_rel_callback( $matches, 'nofollow ugc' ); 3152 3152 },
Note: See TracChangeset
for help on using the changeset viewer.