fixing bug with bad map location filtering, changing the value to 1 from 0
authorAnthony Talarico <talarico@gaslightmedia.com>
Thu, 7 Mar 2019 20:03:24 +0000 (15:03 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Thu, 7 Mar 2019 20:03:24 +0000 (15:03 -0500)
models/admin/manageDashboard/members.php

index 633e88d..2bb75e1 100644 (file)
@@ -293,7 +293,7 @@ class GlmMembersAdmin_manageDashboard_members extends GlmDataMembers
             $where .= " AND (
                 SELECT COUNT(id)
                   FROM ".GLM_MEMBERS_PLUGIN_DB_PREFIX."member_info I
-                 WHERE I.has_no_map_data = 0 AND I.member = T.id
+                 WHERE I.has_no_map_data = 1 AND I.member = T.id
             )";
                
             $filterBadLocation = true;