In WP_Text_Diff_Renderer_Table
:
* In [28525], `$_diff_threshold`, `$inline_diff_renderer`, and `$_show_split_view` were marked `protected`; magic methods were also added. * The magic methods should only perform operations on a whitelisted set of properties, now specified in `$compat_fields` * Remove `__call()`, is unnecessary and can wreak havoc on the parent class. This class is used in one place: `wp_text_diff()`. See #30891. git-svn-id: https://develop.svn.wordpress.org/trunk@31135 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
cdb5c75ab2
commit
f90b923777
@ -68,6 +68,8 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||||||
*/
|
*/
|
||||||
protected $_show_split_view = true;
|
protected $_show_split_view = true;
|
||||||
|
|
||||||
|
protected $compat_fields = array( '_show_split_view', 'inline_diff_renderer', '_diff_threshold' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor - Call parent constructor with params array.
|
* Constructor - Call parent constructor with params array.
|
||||||
*
|
*
|
||||||
@ -465,7 +467,9 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||||||
* @return mixed Property.
|
* @return mixed Property.
|
||||||
*/
|
*/
|
||||||
public function __get( $name ) {
|
public function __get( $name ) {
|
||||||
return $this->$name;
|
if ( in_array( $name, $this->compat_fields ) ) {
|
||||||
|
return $this->$name;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -479,7 +483,9 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||||||
* @return mixed Newly-set property.
|
* @return mixed Newly-set property.
|
||||||
*/
|
*/
|
||||||
public function __set( $name, $value ) {
|
public function __set( $name, $value ) {
|
||||||
return $this->$name = $value;
|
if ( in_array( $name, $this->compat_fields ) ) {
|
||||||
|
return $this->$name = $value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -492,7 +498,9 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||||||
* @return bool Whether the property is set.
|
* @return bool Whether the property is set.
|
||||||
*/
|
*/
|
||||||
public function __isset( $name ) {
|
public function __isset( $name ) {
|
||||||
return isset( $this->$name );
|
if ( in_array( $name, $this->compat_fields ) ) {
|
||||||
|
return isset( $this->$name );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -504,21 +512,9 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||||||
* @param string $name Property to unset.
|
* @param string $name Property to unset.
|
||||||
*/
|
*/
|
||||||
public function __unset( $name ) {
|
public function __unset( $name ) {
|
||||||
unset( $this->$name );
|
if ( in_array( $name, $this->compat_fields ) ) {
|
||||||
}
|
unset( $this->$name );
|
||||||
|
}
|
||||||
/**
|
|
||||||
* Make private/protected methods readable for backwards compatibility.
|
|
||||||
*
|
|
||||||
* @since 4.0.0
|
|
||||||
* @access public
|
|
||||||
*
|
|
||||||
* @param callable $name Method to call.
|
|
||||||
* @param array $arguments Arguments to pass when calling.
|
|
||||||
* @return mixed|bool Return value of the callback, false otherwise.
|
|
||||||
*/
|
|
||||||
public function __call( $name, $arguments ) {
|
|
||||||
return call_user_func_array( array( $this, $name ), $arguments );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user