From 4dbc400c8663c5139842b2a4501608b3b322f850 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 18 Mar 2013 03:41:05 -0700 Subject: [PATCH] Fix for thumbUrl() error. --- e107_handlers/e_parse_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index 4736b06b5..474f31def 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -1817,7 +1817,7 @@ class e_parse extends e_parser { //$url = $this->replaceConstants($url,'abs'); // always switch to 'nice' urls when SC is used - $url = str_replace($tp->getUrlConstants('sc'), $tp->getUrlConstants('raw'), $url); + $url = str_replace($this->getUrlConstants('sc'), $this->getUrlConstants('raw'), $url); } if(!is_array($options))