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);
|
||||
// Avoid space by using raw output.
|
||||
$pt = '<span class="mark_hash">#</span><a rel="tag" href="' .
|
||||
$this->url($this->tag->tag) .
|
||||
'">' . $this->tag->tag . '</a>';
|
||||
htmlspecialchars($this->url()) .
|
||||
'">' . htmlspecialchars($this->tag->tag) . '</a>';
|
||||
$this->out->raw($pt);
|
||||
$this->out->elementEnd('li');
|
||||
}
|
||||
|
|
|
@ -29,10 +29,10 @@ if (!defined('GNUSOCIAL')) { exit(1); }
|
|||
|
||||
class SelftagsWidget extends PeopletagsWidget
|
||||
{
|
||||
function url($tag)
|
||||
public function url()
|
||||
{
|
||||
// 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()
|
||||
|
|
Loading…
Reference in New Issue
Block a user