diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-10-13 00:15:40 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-10-13 00:15:40 +0000 |
commit | aef5c5a559959b3ffc1c1100752ba4a961ac432c (patch) | |
tree | 27404f1d0db8bf9b2605f9fa355da17931a39174 /pages/lists | |
parent | 1cb002d25005995ad2fa993fb94fceb19db8c40b (diff) | |
download | elgg-aef5c5a559959b3ffc1c1100752ba4a961ac432c.tar.gz elgg-aef5c5a559959b3ffc1c1100752ba4a961ac432c.tar.bz2 |
some browsers do not like a div tag closed right away
Diffstat (limited to 'pages/lists')
-rw-r--r-- | pages/lists/mostrecentimages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/lists/mostrecentimages.php b/pages/lists/mostrecentimages.php index 615b05340..270817178 100644 --- a/pages/lists/mostrecentimages.php +++ b/pages/lists/mostrecentimages.php @@ -32,7 +32,7 @@ // grab the html to display the images $images = tp_list_entities("object", "image", $user_id, $max, false, false, true); // echo "<pre>"; var_dump( $images ); echo "</pre>"; - $images .= '<div class="clearfloat"/>'; // hack until elgg fixes problem with css/list entities html + $images .= '<div class="clearfloat"></div>'; // hack until elgg fixes problem with css/list entities html // this view takes care of the title on the main column and the content wrapper |