url escape uses different concatenator
git-svn-id: file:///home/shish/svn/shimmie2/trunk@137 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
28b0431922
commit
aedbb8d9f6
@ -287,7 +287,7 @@ class TagList extends Extension {
|
|||||||
else {
|
else {
|
||||||
$tags = array_remove($tags, $tag);
|
$tags = array_remove($tags, $tag);
|
||||||
$tags = array_remove($tags, "-$tag");
|
$tags = array_remove($tags, "-$tag");
|
||||||
return "<a href='".make_link("index", "search=".url_escape(join('+', $tags)))."' title='Remove'>R</a>";
|
return "<a href='".make_link("index", "search=".url_escape(join(' ', $tags)))."' title='Remove'>R</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -298,7 +298,7 @@ class TagList extends Extension {
|
|||||||
else {
|
else {
|
||||||
$tags = array_remove($tags, "-$tag");
|
$tags = array_remove($tags, "-$tag");
|
||||||
$tags = array_add($tags, $tag);
|
$tags = array_add($tags, $tag);
|
||||||
return "<a href='".make_link("index", "search=".url_escape(join('+', $tags)))."' title='Add'>A</a>";
|
return "<a href='".make_link("index", "search=".url_escape(join(' ', $tags)))."' title='Add'>A</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -309,7 +309,7 @@ class TagList extends Extension {
|
|||||||
else {
|
else {
|
||||||
$tags = array_remove($tags, $tag);
|
$tags = array_remove($tags, $tag);
|
||||||
$tags = array_add($tags, "-$tag");
|
$tags = array_add($tags, "-$tag");
|
||||||
return "<a href='".make_link("index", "search=".url_escape(join('+', $tags)))."' title='Subtract'>S</a>";
|
return "<a href='".make_link("index", "search=".url_escape(join(' ', $tags)))."' title='Subtract'>S</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// }}}
|
// }}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user