From f1b3db8e598e50765201caa720cb95a21403b90d Mon Sep 17 00:00:00 2001 From: Diogo Cordeiro Date: Fri, 17 Jul 2020 20:56:51 +0100 Subject: [PATCH] [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 --- plugins/Bookmark/forms/bookmark.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Bookmark/forms/bookmark.php b/plugins/Bookmark/forms/bookmark.php index 474e092326..8a7a296ea0 100644 --- a/plugins/Bookmark/forms/bookmark.php +++ b/plugins/Bookmark/forms/bookmark.php @@ -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');