From: Jan Schneider Date: Tue, 28 Sep 2010 15:37:42 +0000 (+0200) Subject: Implode the tag list later. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=cc0de4793914042b2267906e8644d8888c8bbbb5;p=horde.git Implode the tag list later. --- diff --git a/framework/Release/lib/Horde/Release.php b/framework/Release/lib/Horde/Release.php index 15c7efc9c..a4d54588c 100644 --- a/framework/Release/lib/Horde/Release.php +++ b/framework/Release/lib/Horde/Release.php @@ -548,9 +548,9 @@ class Horde_Release 'changelog' => $this->notes['fm']['changes']); if (is_array($this->notes['fm']['focus'])) { - $version['tag_list'] = implode(', ', $this->notes['fm']['focus']); - } else { $version['tag_list'] = $this->notes['fm']['focus']; + } else { + $version['tag_list'] = array($this->notes['fm']['focus']); } // Params to update the various project links on FM @@ -676,6 +676,7 @@ class Horde_Release protected function _fmPublish($params) { $key = $this->_options['fm']['user_token']; + $params['tag_list'] = implode(', ', $params['tag_list']); $fm_params = array('auth_code' => $key, 'release' => $params); $http = new Horde_Http_Client();