diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-05 20:47:33 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-05 20:47:33 -0400 |
commit | 66e5946c98c1e441e7ffaf3e2326fc0708b14f2d (patch) | |
tree | 05e550f8aaa8de033b005e50efcbb66ba3af087f /mod | |
parent | 3f7f10b113e716f33221755ad44d213b61665887 (diff) | |
download | elgg-66e5946c98c1e441e7ffaf3e2326fc0708b14f2d.tar.gz elgg-66e5946c98c1e441e7ffaf3e2326fc0708b14f2d.tar.bz2 |
Fixes #4627 removes pagination
Diffstat (limited to 'mod')
-rw-r--r-- | mod/reportedcontent/views/default/widgets/reportedcontent/content.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/reportedcontent/views/default/widgets/reportedcontent/content.php b/mod/reportedcontent/views/default/widgets/reportedcontent/content.php index 4f8906ef2..4c6595653 100644 --- a/mod/reportedcontent/views/default/widgets/reportedcontent/content.php +++ b/mod/reportedcontent/views/default/widgets/reportedcontent/content.php @@ -7,6 +7,7 @@ $list = elgg_list_entities(array( 'types' => 'object', 'subtypes' => 'reported_content', 'limit' => $vars['entity']->num_display, + 'pagination' => false, )); if (!$list) { $list = '<p class="mtm">' . elgg_echo('reportedcontent:none') . '</p>'; |