`wpdb::$checking_collation` was incorrectly marked as `protected` instead of `private` in [32163].
Built from https://develop.svn.wordpress.org/branches/4.1@32183 git-svn-id: http://core.svn.wordpress.org/branches/4.1@32156 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9d3a4d67c2
commit
62c3bf486b
|
@ -174,11 +174,11 @@ class wpdb {
|
|||
* Flag to ensure we don't run into recursion problems when checking the collation.
|
||||
*
|
||||
* @since 4.2.0
|
||||
* @access protected
|
||||
* @access private
|
||||
* @see wpdb::check_collation()
|
||||
* @var boolean
|
||||
*/
|
||||
protected $checking_collation = false;
|
||||
private $checking_collation = false;
|
||||
|
||||
/**
|
||||
* Saved info on the table column
|
||||
|
|
Loading…
Reference in New Issue