From 9ed9d776be4a8c4ed912a538081504d1dff867a6 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 28 Sep 2010 17:25:29 +0200 Subject: [PATCH] tag_list need to be a comma-separated string now. --- framework/Release/lib/Horde/Release.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Release/lib/Horde/Release.php b/framework/Release/lib/Horde/Release.php index 842f174e7..15c7efc9c 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'] = $this->notes['fm']['focus']; + $version['tag_list'] = implode(', ', $this->notes['fm']['focus']); } else { - $version['tag_list'] = array($this->notes['fm']['focus']); + $version['tag_list'] = $this->notes['fm']['focus']; } // Params to update the various project links on FM -- 2.11.0