aboutsummaryrefslogtreecommitdiffstats
path: root/theme/default/html/search
AgeCommit message (Collapse)AuthorFilesLines
2024-12-03Bugfix: Date in search form not kept after submitThomas Lange1-3/+3
Use the `==` (equal) instead of `===` (identical) comparison operator in the form template. This bug was silently introduced in 2021 with 8cd1105 in `core/include/search/main.php` where the `$FORM['OPTIONS']` array is since then filled with integer values and not string values anymore.
2024-01-23Remove trailing slash on void elementsThomas Lange2-4/+4
The trailing slash on void elements (self-closing tags) doesn't have any effect, isn't required by HTML5 and it is recommended to not use it.
2021-07-22Add pagination for search resultsThomas Lange1-0/+2
Add pagination for search results in the admin and default theme.
2019-10-29Remove PHP closing tags and add LF to text filesThomas Lange2-2/+2
Remove the unnecessary PHP closing tags and ensure that *all* text files ending with a LF character.
2019-04-26Rename "template" directory to "theme"Thomas Lange2-0/+70
This commit renames the "template" directory to "theme" because "theme" is the more correct term here.