summaryrefslogtreecommitdiff
path: root/search
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-12-12 21:35:43 +0100
committerMinteck <contact@minteck.org>2022-12-12 21:35:43 +0100
commit72ec0c343c785d2690213326846f66f1147ad313 (patch)
tree7501080c5f0f154877abbd6eade5888b537c965d /search
parent31c4197380537e1966a516e0d8b6c2c502bc8ddd (diff)
downloadhorses-72ec0c343c785d2690213326846f66f1147ad313.tar.gz
horses-72ec0c343c785d2690213326846f66f1147ad313.tar.bz2
horses-72ec0c343c785d2690213326846f66f1147ad313.zip
Final release
Diffstat (limited to 'search')
-rw-r--r--search/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/search/index.php b/search/index.php
index f4199a0..7ada877 100644
--- a/search/index.php
+++ b/search/index.php
@@ -5,7 +5,7 @@ if (isset($_GET['q'])) {
header("Location: /search");
die();
} else {
- $query = preg_replace("/ +/m", " ", preg_replace("/[^0-9_\-.?=+()a-zA-Z\$€*\[\]&@ ;,]/m", " ", trim($_GET['q'])));
+ $query = preg_replace("/ +/m", " ", preg_replace("/[^0-9_\-.?=+()a-zA-Z€*\[\]&@ ;,]/m", " ", trim($_GET['q'])));
$title = $query . " | Search";
}
} else {