From 2e540fa372ae5e967b2c8167c98de94d9827c193 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Wed, 10 Feb 2010 21:32:31 -0500 Subject: [PATCH] gut a dumb feature --- classes/ComicPressTagBuilder.inc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/classes/ComicPressTagBuilder.inc b/classes/ComicPressTagBuilder.inc index 353a15c..3334b52 100644 --- a/classes/ComicPressTagBuilder.inc +++ b/classes/ComicPressTagBuilder.inc @@ -19,7 +19,7 @@ class ComicPressTagBuilderFactory { public function __call($method, $arguments) { global $post; - $a = new ComicPressTagBuilder($post, $this->storyline, $this->dbi); + $a = $this->_new_comicpresstagbuilder($post, $this->storyline, $this->dbi); return call_user_func_array(array($a, $method), $arguments); } @@ -222,9 +222,6 @@ class ComicPressTagBuilder { if (isset($this->post)) { $comic_post = $this->_new_comicpresscomicpost($this->post); return $comic_post->get_attachments_with_children(true); - } else { - $which = (isset($arguments[1])) ? $arguments[1] : 'default'; - return ComicPressBackend::generate_from_id($arguments[0][$which]); } case 'category': if (isset($arguments[0])) {