[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'];
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Email Users] item count missing on user settings table’ is closed to new replies.