Title: [Plugin: Email Users] item count missing on user settings table
Last modified: August 20, 2016

---

# [Plugin: Email Users] item count missing on user settings table

 *  Resolved [Matt Thiessen](https://wordpress.org/support/users/stillatmylinux/)
 * (@stillatmylinux)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-email-users-item-count-missing-on-user-settings-table/)
 * On /wp-admin/admin.php?page=mailusers-user-settings the item count fails on number_format().
 * Warning: number_format() expects parameter 1 to be double, array given in /mnt/
   stor1-wc1-dfw1/412889/www.theblueberrypartnership.com/web/content/wp-includes/
   functions.php on line 155
 * Fixed this by changing line 449 from this:
 * `$totalitems = count_users() ;`
 * to this:
 *     ```
       $user_count = count_users();
       $totalitems = $user_count['total_users'];
       ```
   
 * [http://wordpress.org/extend/plugins/email-users/](http://wordpress.org/extend/plugins/email-users/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Mike Walsh](https://wordpress.org/support/users/mpwalsh8/)
 * (@mpwalsh8)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-email-users-item-count-missing-on-user-settings-table/#post-2872834)
 * Thanks – not sure how that slipped by before but I have added your change into
   the 4.3.6 release that just went out.

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Email Users] item count missing on user settings table’ is closed
to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/email-users_a0e0cf.svg)
 * [Email Users](https://wordpress.org/plugins/email-users/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/email-users/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/email-users/)
 * [Active Topics](https://wordpress.org/support/plugin/email-users/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/email-users/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/email-users/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Mike Walsh](https://wordpress.org/support/users/mpwalsh8/)
 * Last activity: [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-email-users-item-count-missing-on-user-settings-table/#post-2872834)
 * Status: resolved