gut a dumb feature

This commit is contained in:
John Bintz 2010-02-10 21:32:31 -05:00
parent ca97d7cd85
commit 2e540fa372
1 changed files with 1 additions and 4 deletions

View File

@ -19,7 +19,7 @@ class ComicPressTagBuilderFactory {
public function __call($method, $arguments) { public function __call($method, $arguments) {
global $post; 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); return call_user_func_array(array($a, $method), $arguments);
} }
@ -222,9 +222,6 @@ class ComicPressTagBuilder {
if (isset($this->post)) { if (isset($this->post)) {
$comic_post = $this->_new_comicpresscomicpost($this->post); $comic_post = $this->_new_comicpresscomicpost($this->post);
return $comic_post->get_attachments_with_children(true); 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': case 'category':
if (isset($arguments[0])) { if (isset($arguments[0])) {