aboutsummaryrefslogtreecommitdiff
path: root/mostrecentimages.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-07-10 23:49:33 +0000
committerCash Costello <cash.costello@gmail.com>2009-07-10 23:49:33 +0000
commitef40f4101aa5653a6697a273806ed4d4537bc91e (patch)
treeea7fe5e5b32af5754c141e6ec05c07271c6c54b2 /mostrecentimages.php
parent808fe952da4d1dab727ec44588319d8cc3da3e44 (diff)
downloadelgg-ef40f4101aa5653a6697a273806ed4d4537bc91e.tar.gz
elgg-ef40f4101aa5653a6697a273806ed4d4537bc91e.tar.bz2
mostly fixed recent images listing - issue with css on pagination when surrounding floated elements
Diffstat (limited to 'mostrecentimages.php')
-rw-r--r--mostrecentimages.php14
1 files changed, 4 insertions, 10 deletions
diff --git a/mostrecentimages.php b/mostrecentimages.php
index edceb9cd4..9b2c05c60 100644
--- a/mostrecentimages.php
+++ b/mostrecentimages.php
@@ -1,8 +1,7 @@
<?php
/**
- * Tidypics full view of an image
- * Given a GUID, this page will try and display any entity
+ * Most recent uploaded images
*
*/
@@ -12,16 +11,11 @@
$max = 8;
$images = list_entities("object", "image", 0, $max, false, false, true);
- $title = "Most recent images";
+ $title = elgg_echo('tidypics:mostrecent');
$area2 = elgg_view_title($title);
-
-// include_once(dirname(__FILE__) . "/notice.php");
-// $notice = tp_notice();
-// $area2 .= $notice->text;
-
+ $area2 .= '<div class="contentWrapper">';
$area2 .= $images;
+ $area2 .= '</div>';
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
page_draw($title, $body);
- if($notice->showMessage == true) system_message($notice->text);
-
?> \ No newline at end of file