diff options
author | Steve Clay <steve@mrclay.org> | 2013-02-02 18:31:12 -0800 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2013-02-02 18:31:12 -0800 |
commit | 2cd87bb4ecf6df7b3aea9189cf1933ac3a78038c (patch) | |
tree | 26fff564142315496f9956f40daebe056d812794 /mod/reportedcontent/views/default/admin | |
parent | b809dee488be374f248763741a5e1429219fe988 (diff) | |
parent | f8bee7421d1c3880ba7acb3f8fd16042d598a95f (diff) | |
download | elgg-2cd87bb4ecf6df7b3aea9189cf1933ac3a78038c.tar.gz elgg-2cd87bb4ecf6df7b3aea9189cf1933ac3a78038c.tar.bz2 |
Merge pull request #398 from jeabakker/#4880
#4880 - incorrect usage of elgg_get_entities_* parameters
Diffstat (limited to 'mod/reportedcontent/views/default/admin')
-rw-r--r-- | mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php b/mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php index 32f108312..ed52a536d 100644 --- a/mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php +++ b/mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php @@ -5,7 +5,7 @@ * @package ElggReportedContent */ -$list = elgg_list_entities(array('types' => 'object', 'subtypes' => 'reported_content')); +$list = elgg_list_entities(array('type' => 'object', 'subtype' => 'reported_content')); if (!$list) { $list = '<p class="mtm">' . elgg_echo('reportedcontent:none') . '</p>'; } |