Multisite: Fix `switch(` spacing after [37657]
Fixes #36717. Built from https://develop.svn.wordpress.org/trunk@37658 git-svn-id: http://core.svn.wordpress.org/trunk@37624 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b885fe6761
commit
4cce2ca14f
|
@ -173,7 +173,7 @@ class WP_Network {
|
|||
* @return bool Whether the property is set.
|
||||
*/
|
||||
public function __isset( $key ) {
|
||||
switch( $key ) {
|
||||
switch ( $key ) {
|
||||
case 'blog_id':
|
||||
case 'site_id':
|
||||
return true;
|
||||
|
@ -194,7 +194,7 @@ class WP_Network {
|
|||
* @param mixed $value Value to assign to the property.
|
||||
*/
|
||||
public function __set( $key, $value ) {
|
||||
switch( $key ) {
|
||||
switch ( $key ) {
|
||||
case 'blog_id':
|
||||
case 'site_id':
|
||||
$this->blog_id = (string) $value;
|
||||
|
|
|
@ -275,7 +275,7 @@ final class WP_Site {
|
|||
* @param mixed $value Value to assign to the property.
|
||||
*/
|
||||
public function __set( $key, $value ) {
|
||||
switch( $key ) {
|
||||
switch ( $key ) {
|
||||
case 'id':
|
||||
case 'blog_id':
|
||||
$this->blog_id = (string) $value;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-alpha-37657';
|
||||
$wp_version = '4.6-alpha-37658';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue