mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Coding Standards: Remove redundant semicolons after closing curly brackets.
Props jrf. See #53359. Built from https://develop.svn.wordpress.org/trunk@51552 git-svn-id: http://core.svn.wordpress.org/trunk@51163 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d289b7f602
commit
815e31f611
@ -3265,7 +3265,7 @@ function wp_init_targeted_link_rel_filters() {
|
|||||||
|
|
||||||
foreach ( $filters as $filter ) {
|
foreach ( $filters as $filter ) {
|
||||||
add_filter( $filter, 'wp_targeted_link_rel' );
|
add_filter( $filter, 'wp_targeted_link_rel' );
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -3288,7 +3288,7 @@ function wp_remove_targeted_link_rel_filters() {
|
|||||||
|
|
||||||
foreach ( $filters as $filter ) {
|
foreach ( $filters as $filter ) {
|
||||||
remove_filter( $filter, 'wp_targeted_link_rel' );
|
remove_filter( $filter, 'wp_targeted_link_rel' );
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-alpha-51551';
|
$wp_version = '5.9-alpha-51552';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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