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
This commit is contained in:
shish 2007-12-08 05:33:15 +00:00
parent 0634cdd73d
commit eef425f7bd

View File

@ -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);
}
}