From eef425f7bdc81710a38de721b96afdc580f9169b Mon Sep 17 00:00:00 2001 From: shish Date: Sat, 8 Dec 2007 05:33:15 +0000 Subject: [PATCH] make sure TagSetEvent is always referring to an array of tags, no matter the input git-svn-id: file:///home/shish/svn/shimmie2/trunk@641 7f39781d-f577-437e-ae19-be835c7a54ca --- core/event.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/event.class.php b/core/event.class.php index a9761877..cb9b9985 100644 --- a/core/event.class.php +++ b/core/event.class.php @@ -205,7 +205,7 @@ class TagSetEvent extends Event { public function TagSetEvent($image_id, $tags) { $this->image_id = $image_id; - $this->tags = $tags; + $this->tags = tag_explode($tags); } }