Comments: Remove a one-time variable in wp_rel_nofollow()
and wp_rel_ugc()
.
See #48022. Built from https://develop.svn.wordpress.org/trunk@46396 git-svn-id: http://core.svn.wordpress.org/trunk@46195 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
83edc24762
commit
f1e54593f0
@ -3063,13 +3063,12 @@ function wp_rel_callback( $matches, $rel ) {
|
|||||||
* @return string Converted content.
|
* @return string Converted content.
|
||||||
*/
|
*/
|
||||||
function wp_rel_nofollow( $text ) {
|
function wp_rel_nofollow( $text ) {
|
||||||
// This is a pre save filter, so text is already escaped.
|
// This is a pre-save filter, so text is already escaped.
|
||||||
$text = stripslashes( $text );
|
$text = stripslashes( $text );
|
||||||
$rel = 'nofollow';
|
|
||||||
$text = preg_replace_callback(
|
$text = preg_replace_callback(
|
||||||
'|<a (.+?)>|i',
|
'|<a (.+?)>|i',
|
||||||
function( $matches ) use ( $rel ) {
|
function( $matches ) {
|
||||||
return wp_rel_callback( $matches, $rel );
|
return wp_rel_callback( $matches, 'nofollow' );
|
||||||
},
|
},
|
||||||
$text
|
$text
|
||||||
);
|
);
|
||||||
@ -3098,13 +3097,12 @@ function wp_rel_nofollow_callback( $matches ) {
|
|||||||
* @return string Converted content.
|
* @return string Converted content.
|
||||||
*/
|
*/
|
||||||
function wp_rel_ugc( $text ) {
|
function wp_rel_ugc( $text ) {
|
||||||
// This is a pre save filter, so text is already escaped.
|
// This is a pre-save filter, so text is already escaped.
|
||||||
$text = stripslashes( $text );
|
$text = stripslashes( $text );
|
||||||
$rel = 'nofollow ugc';
|
|
||||||
$text = preg_replace_callback(
|
$text = preg_replace_callback(
|
||||||
'|<a (.+?)>|i',
|
'|<a (.+?)>|i',
|
||||||
function( $matches ) use ( $rel ) {
|
function( $matches ) {
|
||||||
return wp_rel_callback( $matches, $rel );
|
return wp_rel_callback( $matches, 'nofollow ugc' );
|
||||||
},
|
},
|
||||||
$text
|
$text
|
||||||
);
|
);
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-beta2-46395';
|
$wp_version = '5.3-beta2-46396';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user