]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add groups-by-posts section
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 02:03:17 +0000 (03:03 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 02:03:17 +0000 (03:03 +0100)
actions/groups.php

index 154976f212b35321f14f4d48044ea9b922b337c6..206065d2636a8b29d9372e29ecf3f37bf3c5fbe4 100644 (file)
@@ -114,4 +114,10 @@ class GroupsAction extends Action
         $this->pagination($this->page > 1, $cnt > GROUPS_PER_PAGE,
                           $this->page, 'groups');
     }
+
+    function showSections()
+    {
+        $gbp = new GroupsByPostsSection($this);
+        $gbp->show();
+    }
 }