mirror of
https://github.com/hnhx/librex.git
synced 2025-01-09 11:17:25 -03:00
Changed space placement to remove unnecessary space when condition is not met
This commit is contained in:
parent
870ef39b8c
commit
88df13340a
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@
|
|||
continue;
|
||||
}
|
||||
|
||||
echo "<a " . (($category_index == $type) ? "class=\"active\"" : "") . " href=\"/search.php?q=" . $query . "&p=0&t=" . $category_index . "\"><img src=\"static/images/" . $category . "_result.png\" alt=\"" . $category . " result\" />" . ucfirst($category) . "</a>";
|
||||
echo "<a " . (($category_index == $type) ? "class=\"active\" " : "") . "href=\"/search.php?q=" . $query . "&p=0&t=" . $category_index . "\"><img src=\"static/images/" . $category . "_result.png\" alt=\"" . $category . " result\" />" . ucfirst($category) . "</a>";
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue