diff options
author | cash <cash.costello@gmail.com> | 2011-06-24 20:25:34 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-06-24 20:25:34 -0400 |
commit | efff3471e09a864948feadb989d2ac9f5f2e0fc5 (patch) | |
tree | b11bff8918e3659f612ffe6a4267e4eeb3db0efd /mod/custom_index | |
parent | 43e2672f65d12a36d75ad9257a936dc93a2108f3 (diff) | |
download | elgg-efff3471e09a864948feadb989d2ac9f5f2e0fc5.tar.gz elgg-efff3471e09a864948feadb989d2ac9f5f2e0fc5.tar.bz2 |
Refs #1253 using 'list_type' string instead of boolean 'gallery' for entity listing
Diffstat (limited to 'mod/custom_index')
-rw-r--r-- | mod/custom_index/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/custom_index/index.php b/mod/custom_index/index.php index e39e6ef29..831114127 100644 --- a/mod/custom_index/index.php +++ b/mod/custom_index/index.php @@ -35,7 +35,7 @@ $newest_members = elgg_list_entities_from_metadata(array( 'limit' => 10, 'full_view' => false, 'pagination' => false, - 'gallery' => true, + 'list_type' => 'gallery', 'size' => 'small', )); |