diff options
author | Greg Froese <greg.froese@gmail.com> | 2009-05-17 04:59:41 +0000 |
---|---|---|
committer | Greg Froese <greg.froese@gmail.com> | 2009-05-17 04:59:41 +0000 |
commit | 6e9ec86ca3d512b6f6a2863111488ec995a197d4 (patch) | |
tree | 6c1c069f3842f812b4d02993fd97d4eea02a19af | |
parent | 185ec702edbc5e1f9b636454e5282fa718da7b56 (diff) | |
download | elgg-6e9ec86ca3d512b6f6a2863111488ec995a197d4.tar.gz elgg-6e9ec86ca3d512b6f6a2863111488ec995a197d4.tar.bz2 |
commented out a custom call
-rw-r--r-- | mostrecentimages.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mostrecentimages.php b/mostrecentimages.php index e42cea4ae..edceb9cd4 100644 --- a/mostrecentimages.php +++ b/mostrecentimages.php @@ -8,15 +8,17 @@ // Load Elgg engine include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - include_once(dirname(__FILE__) . "/notice.php"); $max = 8; $images = list_entities("object", "image", 0, $max, false, false, true); $title = "Most recent images"; $area2 = elgg_view_title($title); - $notice = tp_notice(); - $area2 .= $notice->text; + +// include_once(dirname(__FILE__) . "/notice.php"); +// $notice = tp_notice(); +// $area2 .= $notice->text; + $area2 .= $images; $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); |