[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:
Diogo Cordeiro 2020-07-17 20:56:51 +01:00 committed by Diogo Peralta Cordeiro
parent 80a4811539
commit f1b3db8e59
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class BookmarkForm extends Form
$this->out->input('bookmark-tags',
// TRANS: Field label on form for adding a new bookmark.
_m('LABEL','Tags'),
$this->_tags,
implode(',', $this->_tags),
// TRANS: Field title on form for adding a new bookmark.
_m('Comma- or space-separated list of tags.'),
'tags');