make html more readable

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@751 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2010-09-26 22:07:36 +00:00
parent 8b45ba9e75
commit f52cba5cb3

View File

@ -27,10 +27,10 @@ if ($lastSearches && count($lastSearches) > 0) {
<h2><?php echo T_('Last Searches'); ?></h2>
<div id="searches">
<table>
<table>
<?php
foreach ($lastSearches as $row) {
echo '<tr><td>';
echo ' <tr><td>';
echo '<a href="'
. htmlspecialchars(createURL('search', $range.'/'.$row['shTerms']))
. '">';
@ -44,7 +44,7 @@ foreach ($lastSearches as $row) {
//echo '<tr><td><a href="'.createURL('users').'">...</a></td></tr>';
?>
</table>
</table>
</div>
<?php
}