[Bookmark] Fix misuse of XMLOutputter
Argument 3 passed to htmloutputter::input() must be of the type string or null, array given, called in /srv/gnusocial/plugins/Bookmark/forms/bookmark.php on line 166
This commit is contained in:
parent
80a4811539
commit
f1b3db8e59
|
@ -160,7 +160,7 @@ class BookmarkForm extends Form
|
||||||
$this->out->input('bookmark-tags',
|
$this->out->input('bookmark-tags',
|
||||||
// TRANS: Field label on form for adding a new bookmark.
|
// TRANS: Field label on form for adding a new bookmark.
|
||||||
_m('LABEL','Tags'),
|
_m('LABEL','Tags'),
|
||||||
$this->_tags,
|
implode(',', $this->_tags),
|
||||||
// TRANS: Field title on form for adding a new bookmark.
|
// TRANS: Field title on form for adding a new bookmark.
|
||||||
_m('Comma- or space-separated list of tags.'),
|
_m('Comma- or space-separated list of tags.'),
|
||||||
'tags');
|
'tags');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user