Determines whether the database supports collation.
Description
Called when WordPress is generating the table scheme.
Use wpdb::has_cap( 'collation' )
.
Source
public function supports_collation() {
_deprecated_function( __FUNCTION__, '3.5.0', 'wpdb::has_cap( \'collation\' )' );
return $this->has_cap( 'collation' );
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.