]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change to only show local posters in top posting section
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 19:22:06 +0000 (20:22 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 19:22:06 +0000 (20:22 +0100)
lib/topposterssection.php

index 1163738180c381e1d543f3c121f14ff13423b44b..7a3d46aa5f43ab91b513be482310fc1f1f1aa741 100644 (file)
@@ -50,6 +50,7 @@ class TopPostersSection extends ProfileSection
     {
         $qry = 'SELECT profile.*, count(*) as value ' .
           'FROM profile JOIN notice ON profile.id = notice.profile_id ' .
+          (common_config('public', 'localonly') ? 'WHERE is_local = 1 ' : '') .
           'GROUP BY profile.id ' .
           'ORDER BY value DESC ';