In single-user mode, link #hashtags to the user's tagged stream rather than the global tag action, which isn't registered.
Previously they would end up pointing to the home URL.
This commit is contained in:
parent
ee438cf198
commit
88678eadfa
|
@ -862,7 +862,14 @@ function common_xml_safe_str($str)
|
||||||
function common_tag_link($tag)
|
function common_tag_link($tag)
|
||||||
{
|
{
|
||||||
$canonical = common_canonical_tag($tag);
|
$canonical = common_canonical_tag($tag);
|
||||||
$url = common_local_url('tag', array('tag' => $canonical));
|
if (common_config('singleuser', 'enabled')) {
|
||||||
|
// regular TagAction isn't set up in 1user mode
|
||||||
|
$url = common_local_url('showstream',
|
||||||
|
array('nickname' => common_config('singleuser', 'nickname'),
|
||||||
|
'tag' => $canonical));
|
||||||
|
} else {
|
||||||
|
$url = common_local_url('tag', array('tag' => $canonical));
|
||||||
|
}
|
||||||
$xs = new XMLStringer();
|
$xs = new XMLStringer();
|
||||||
$xs->elementStart('span', 'tag');
|
$xs->elementStart('span', 'tag');
|
||||||
$xs->element('a', array('href' => $url,
|
$xs->element('a', array('href' => $url,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user