1
0
Fork 0

Fix bad use of Tag contruct

Dieser Commit ist enthalten in:
Sébastien Lucas 2014-06-03 22:38:23 +02:00
Ursprung 313234edda
Commit bef89f3a98
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -187,7 +187,7 @@ class Book extends Base {
$result->execute (array ($this->id));
while ($post = $result->fetchObject ())
{
array_push ($this->tags, new Tag ($post->id, $post->name));
array_push ($this->tags, new Tag ($post));
}
}
return $this->tags;