Fix spaces in search terms.
This commit is contained in:
parent
e21d3c83ab
commit
43d97e41e1
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@
|
|||
$url = $url . "p=/&";
|
||||
}
|
||||
if (isset ($_GET[q])) {
|
||||
$url = $url . "q=$_GET[q]";
|
||||
$url = $url . "q=" . str_replace (" ", "+", $_GET[q]);
|
||||
} else {
|
||||
$url = $url . "q=";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue