From 5dd32446d5165045b02fb8f3a77750b60c7879fa Mon Sep 17 00:00:00 2001 From: John Bintz Date: Thu, 12 Nov 2009 19:08:30 -0500 Subject: [PATCH] PHP 4 compatibility fix --- classes/ComicPressStoryline.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/classes/ComicPressStoryline.inc b/classes/ComicPressStoryline.inc index 55f28db..ca4ba52 100644 --- a/classes/ComicPressStoryline.inc +++ b/classes/ComicPressStoryline.inc @@ -532,7 +532,8 @@ class ComicPressStoryline { function build_from_restrictions($restrictions = null) { global $post; - $this->read_from_options()->exclude_all(); + $this->read_from_options(); + $this->exclude_all(); $include_all = true; if (is_array($restrictions)) { @@ -585,4 +586,4 @@ class ComicPressStoryline { } } -?> \ No newline at end of file +?>