Coding Standards: Fix the Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace violations.

See #45934.



git-svn-id: https://develop.svn.wordpress.org/trunk@44566 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast
2019-01-11 06:39:55 +00:00
parent 83af0329a2
commit 33caf61b8b
12 changed files with 33 additions and 34 deletions

View File

@@ -203,11 +203,11 @@ function export_wp( $args = array() ) {
* @return string Site URL.
*/
function wxr_site_url() {
// Multisite: the base URL.
if ( is_multisite() ) {
// Multisite: the base URL.
return network_home_url();
} // WordPress (single site): the blog URL.
else {
} else {
// WordPress (single site): the blog URL.
return get_bloginfo_rss( 'url' );
}
}