SelftagWidget had mismatching url() definition
This commit is contained in:
parent
e6507a0f18
commit
748bd825e7
@ -103,8 +103,8 @@ class PeopletagsWidget extends Widget
|
|||||||
$this->out->elementStart('li', 'hashptag mode-' . $mode);
|
$this->out->elementStart('li', 'hashptag mode-' . $mode);
|
||||||
// Avoid space by using raw output.
|
// Avoid space by using raw output.
|
||||||
$pt = '<span class="mark_hash">#</span><a rel="tag" href="' .
|
$pt = '<span class="mark_hash">#</span><a rel="tag" href="' .
|
||||||
$this->url($this->tag->tag) .
|
htmlspecialchars($this->url()) .
|
||||||
'">' . $this->tag->tag . '</a>';
|
'">' . htmlspecialchars($this->tag->tag) . '</a>';
|
||||||
$this->out->raw($pt);
|
$this->out->raw($pt);
|
||||||
$this->out->elementEnd('li');
|
$this->out->elementEnd('li');
|
||||||
}
|
}
|
||||||
|
@ -29,10 +29,10 @@ if (!defined('GNUSOCIAL')) { exit(1); }
|
|||||||
|
|
||||||
class SelftagsWidget extends PeopletagsWidget
|
class SelftagsWidget extends PeopletagsWidget
|
||||||
{
|
{
|
||||||
function url($tag)
|
public function url()
|
||||||
{
|
{
|
||||||
// link to self tag page
|
// link to self tag page
|
||||||
return common_local_url('selftag', array('tag' => $tag));
|
return common_local_url('selftag', array('tag' => $this->tag->tag));
|
||||||
}
|
}
|
||||||
|
|
||||||
function label()
|
function label()
|
||||||
|
Loading…
Reference in New Issue
Block a user