aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-11 20:58:03 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-11 20:58:03 -0700
commitb651604e8bc8895483fa388448cb5bbd8bcd35f9 (patch)
tree07cf069020156e7a684c310d340c3d66b89bf955
parent1932e726030207fd9283e6e6a796b53c5995fea4 (diff)
downloadvolse-hubzilla-b651604e8bc8895483fa388448cb5bbd8bcd35f9.tar.gz
volse-hubzilla-b651604e8bc8895483fa388448cb5bbd8bcd35f9.tar.bz2
volse-hubzilla-b651604e8bc8895483fa388448cb5bbd8bcd35f9.zip
remove the forum limit
-rw-r--r--doc/to_do_code.bb2
-rw-r--r--include/widgets.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb
index f3c347b53..04974e012 100644
--- a/doc/to_do_code.bb
+++ b/doc/to_do_code.bb
@@ -4,7 +4,7 @@ We need much more than this, but here are areas where developers can help. Pleas
[li]Documentation - see Red Documentation Project To-Do List[/li]
[li]Include TOS link in registration/verification email[/li]
-[li]forum widget with unread counts (requires the DB schema changes from v3/hubzilla to be viable)[/li]
+[li](done) forum widget with unread counts (requires the DB schema changes from v3/hubzilla to be viable)[/li]
[li]Create bug tracker module[/li]
[li]translation plugins - moses or apertium[/li]
[li]Infinite scroll improvements (i.e. embedded page links) see http://scrollsample.appspot.com/items [/li]
diff --git a/include/widgets.php b/include/widgets.php
index 0e56b0e15..49470287e 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -999,7 +999,7 @@ function widget_forums($arr) {
if(is_array($arr) && array_key_exists('limit',$arr))
$limit = " limit " . intval($limit) . " ";
else
- $limit = " limit 12 ";
+ $limit = '';
$perms_sql = item_permissions_sql(local_channel()) . item_normal();