From 8f6b46e203c6deab1c1e06c5e2aadd70bbed765f Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 13 Sep 2009 14:08:47 +0000 Subject: updated to work with Elgg 1.6.1 - bug fix exposed problem with the lists code - not specifying full view = false --- pages/lists/friendmostviewed.php | 2 +- pages/lists/highestrated.php | 2 +- pages/lists/mostcommentedimages.php | 2 +- pages/lists/mostcommentedimagesthismonth.php | 2 +- pages/lists/mostcommentedimagestoday.php | 2 +- pages/lists/mostviewedimages.php | 2 +- pages/lists/mostviewedimageslastmonth.php | 2 +- pages/lists/mostviewedimagesthismonth.php | 2 +- pages/lists/mostviewedimagesthisyear.php | 2 +- pages/lists/mostviewedimagestoday.php | 2 +- pages/lists/recentlycommented.php | 2 +- pages/lists/recentlyviewed.php | 2 +- pages/lists/yourmostviewed.php | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) (limited to 'pages/lists') diff --git a/pages/lists/friendmostviewed.php b/pages/lists/friendmostviewed.php index 793304edc..07fcd39b5 100644 --- a/pages/lists/friendmostviewed.php +++ b/pages/lists/friendmostviewed.php @@ -52,7 +52,7 @@ $title = sprintf(elgg_echo("tidypics:friendmostviewed"), $friendname); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); diff --git a/pages/lists/highestrated.php b/pages/lists/highestrated.php index bacb7ba86..e05e7a9ba 100644 --- a/pages/lists/highestrated.php +++ b/pages/lists/highestrated.php @@ -58,7 +58,7 @@ $album = get_entity($album_id); $title = $album["title"] . ": " . elgg_echo("tidypics:highestrated"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); diff --git a/pages/lists/mostcommentedimages.php b/pages/lists/mostcommentedimages.php index e22d3863e..801409fdc 100644 --- a/pages/lists/mostcommentedimages.php +++ b/pages/lists/mostcommentedimages.php @@ -37,7 +37,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostcommented"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostcommentedimagesthismonth.php b/pages/lists/mostcommentedimagesthismonth.php index 88b8371ee..d95e2aff5 100644 --- a/pages/lists/mostcommentedimagesthismonth.php +++ b/pages/lists/mostcommentedimagesthismonth.php @@ -44,7 +44,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostcommentedthismonth"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostcommentedimagestoday.php b/pages/lists/mostcommentedimagestoday.php index d35ac468d..bd1a0cbec 100644 --- a/pages/lists/mostcommentedimagestoday.php +++ b/pages/lists/mostcommentedimagestoday.php @@ -44,7 +44,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostcommentedtoday"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostviewedimages.php b/pages/lists/mostviewedimages.php index bd1b3ee92..da8a20b5f 100644 --- a/pages/lists/mostviewedimages.php +++ b/pages/lists/mostviewedimages.php @@ -35,7 +35,7 @@ } $title = elgg_echo("tidypics:mostviewed"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostviewedimageslastmonth.php b/pages/lists/mostviewedimageslastmonth.php index c5edec3d9..1ed9161f7 100644 --- a/pages/lists/mostviewedimageslastmonth.php +++ b/pages/lists/mostviewedimageslastmonth.php @@ -44,7 +44,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostviewedlastmonth"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostviewedimagesthismonth.php b/pages/lists/mostviewedimagesthismonth.php index dfdb6136a..bfe08e1da 100644 --- a/pages/lists/mostviewedimagesthismonth.php +++ b/pages/lists/mostviewedimagesthismonth.php @@ -44,7 +44,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostviewedthismonth"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostviewedimagesthisyear.php b/pages/lists/mostviewedimagesthisyear.php index e6c8a53db..fe1a63d38 100644 --- a/pages/lists/mostviewedimagesthisyear.php +++ b/pages/lists/mostviewedimagesthisyear.php @@ -44,7 +44,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostviewedthisyear"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/mostviewedimagestoday.php b/pages/lists/mostviewedimagestoday.php index 9845506eb..f8e844753 100644 --- a/pages/lists/mostviewedimagestoday.php +++ b/pages/lists/mostviewedimagestoday.php @@ -44,7 +44,7 @@ tidypics_mostviewed_submenus(); $title = elgg_echo("tidypics:mostviewedtoday"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/recentlycommented.php b/pages/lists/recentlycommented.php index da0f2a12a..fd1a24454 100644 --- a/pages/lists/recentlycommented.php +++ b/pages/lists/recentlycommented.php @@ -46,7 +46,7 @@ } $title = elgg_echo("tidypics:recentlycommented"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/recentlyviewed.php b/pages/lists/recentlyviewed.php index b8a5531b2..6189b07de 100644 --- a/pages/lists/recentlyviewed.php +++ b/pages/lists/recentlyviewed.php @@ -39,7 +39,7 @@ $title = elgg_echo("tidypics:recentlyviewed"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file diff --git a/pages/lists/yourmostviewed.php b/pages/lists/yourmostviewed.php index 6a2114d19..b00ddafa1 100644 --- a/pages/lists/yourmostviewed.php +++ b/pages/lists/yourmostviewed.php @@ -36,7 +36,7 @@ $title = elgg_echo("tidypics:yourmostviewed"); $area2 = elgg_view_title($title); - $area2 .= elgg_view_entity_list($entities, $max, 0, $max); + $area2 .= elgg_view_entity_list($entities, $max, 0, $max, false); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); ?> \ No newline at end of file -- cgit v1.2.3