From b7ad4bf47a11744a359c2aa0f332820f672a3e7d Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Thu, 19 Apr 2012 00:37:09 +0200 Subject: [PATCH] Apparently the default project for tags is still 0, so make it explicit. --- src/IDF/Tag.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IDF/Tag.php b/src/IDF/Tag.php index e3ecba5..7b6349e 100644 --- a/src/IDF/Tag.php +++ b/src/IDF/Tag.php @@ -156,6 +156,7 @@ class IDF_Tag extends Pluf_Model $tag = new IDF_Tag(); $tag->name = $name; $tag->class = $class; + $tag->project = null; $tag->create(); return $tag; }