Make WordPress Core

Ticket #39297: class-wp-user-query.php.patch

File class-wp-user-query.php.patch, 416 bytes (added by runciters, 9 years ago)
  • src/wp-includes/class-wp-user-query.php

     
    715715         * @return int Number of total users.
    716716         */
    717717        public function get_total() {
    718                 return $this->total_users;
     718                return (int) $this->total_users;
    719719        }
    720720
    721721        /**