and merge that into stable...

git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.1@590 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2007-10-28 17:08:22 +00:00
parent 16f83a8f2b
commit de6547cd4b

View File

@ -153,10 +153,12 @@ class Database {
else { else {
$term = str_replace("*", "%", $term); $term = str_replace("*", "%", $term);
$term = str_replace("?", "_", $term); $term = str_replace("?", "_", $term);
$sign = $negative ? "-" : "+"; if(!preg_match("/^[%_]+$/", $term)) {
if($sign == "+") $positive_tag_count++; $sign = $negative ? "-" : "+";
else $negative_tag_count++; if($sign == "+") $positive_tag_count++;
$tag_search->append(new Querylet(" $sign (tag LIKE ?)", array($term))); else $negative_tag_count++;
$tag_search->append(new Querylet(" $sign (tag LIKE ?)", array($term)));
}
} }
} }