make multi tag search not break on space
git-svn-id: file:///home/shish/svn/shimmie2/trunk@454 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
5444810cae
commit
8009aa3fa8
@ -398,9 +398,9 @@ function _get_query_parts() {
|
|||||||
$n++;
|
$n++;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
$path = str_replace('/', ' ', $path);
|
$path = str_replace('/', '%%', $path);
|
||||||
$path = str_replace(' ', '/', $path);
|
$path = str_replace('%%%%', '/', $path);
|
||||||
$parts = split(' ', $path);
|
$parts = split('%%', $path);
|
||||||
|
|
||||||
return $parts;
|
return $parts;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user