aboutsummaryrefslogtreecommitdiff
path: root/pages/lists
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-09-13 14:08:47 +0000
committerCash Costello <cash.costello@gmail.com>2009-09-13 14:08:47 +0000
commit8f6b46e203c6deab1c1e06c5e2aadd70bbed765f (patch)
tree51b9aa17691ec8e8dfb3ed7c8f58054b7658bd9e /pages/lists
parentabb0bcd5c36a43ebc7bc5ed41c197566ed585113 (diff)
downloadelgg-8f6b46e203c6deab1c1e06c5e2aadd70bbed765f.tar.gz
elgg-8f6b46e203c6deab1c1e06c5e2aadd70bbed765f.tar.bz2
updated to work with Elgg 1.6.1 - bug fix exposed problem with the lists code - not specifying full view = false
Diffstat (limited to 'pages/lists')
-rw-r--r--pages/lists/friendmostviewed.php2
-rw-r--r--pages/lists/highestrated.php2
-rw-r--r--pages/lists/mostcommentedimages.php2
-rw-r--r--pages/lists/mostcommentedimagesthismonth.php2
-rw-r--r--pages/lists/mostcommentedimagestoday.php2
-rw-r--r--pages/lists/mostviewedimages.php2
-rw-r--r--pages/lists/mostviewedimageslastmonth.php2
-rw-r--r--pages/lists/mostviewedimagesthismonth.php2
-rw-r--r--pages/lists/mostviewedimagesthisyear.php2
-rw-r--r--pages/lists/mostviewedimagestoday.php2
-rw-r--r--pages/lists/recentlycommented.php2
-rw-r--r--pages/lists/recentlyviewed.php2
-rw-r--r--pages/lists/yourmostviewed.php2
13 files changed, 13 insertions, 13 deletions
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