equal
deleted
inserted
replaced
272 // we have some results, show pagination + result list |
272 // we have some results, show pagination + result list |
273 echo '<h3 style="float: left;">' . $lang->get('log_heading_logdisplay') . '</h3>'; |
273 echo '<h3 style="float: left;">' . $lang->get('log_heading_logdisplay') . '</h3>'; |
274 |
274 |
275 echo $paginator; |
275 echo $paginator; |
276 // padding |
276 // padding |
277 echo '<div style="height: 10px;"></div>'; |
277 echo '<div style="height: 10px; clear: both;"></div>'; |
278 foreach ( $dataset as $row ) |
278 foreach ( $dataset as $row ) |
279 { |
279 { |
280 echo LogDisplay::render_row($row) . '<br />'; |
280 echo LogDisplay::render_row($row) . '<br />'; |
281 } |
281 } |
282 echo $paginator; |
282 echo $paginator; |