summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
authordaniel.lindgren <daniel.lindgren@tullverket.se>2009-03-11 17:02:55 +0100
committerdaniel.lindgren <daniel.lindgren@tullverket.se>2009-03-11 17:02:55 +0100
commitb42bcfe76a8bf94574aebbbe4f9cf31d37b65553 (patch)
tree803c2bbafa714b52ed4f36813428bf37e393375a /inc/html.php
parent6080c584e81927b2263267822e3ebc1e553662ec (diff)
downloadrpg-b42bcfe76a8bf94574aebbbe4f9cf31d37b65553.tar.gz
rpg-b42bcfe76a8bf94574aebbbe4f9cf31d37b65553.tar.bz2
Search function update
Ignore-this: 4cd6bddacb795ef15f133559c223ac1f * Adds the possibility to exclude namespace(s) from search, by preceding them with "^". * Changed handling of search parameters to allow any order of words and namespaces. darcs-hash:20090311160255-13810-c2e00cc7764d180967b4c6f22e17b1c0dafe36f4.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php
index 114bdad9d..b1e755cd3 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -302,7 +302,7 @@ function html_search(){
flush();
//check if search is restricted to namespace
- if(preg_match('/([^@]*)@([^@]*)/',$QUERY,$match)) {
+ if(preg_match('/@([^@]*)/',$QUERY,$match)) {
$id = cleanID($match[1]);
if(empty($id)) {
print '<div class="nothing">'.$lang['nothingfound'].'</div>';