1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Fix for thumbUrl() error.

This commit is contained in:
Cameron
2013-03-18 03:41:05 -07:00
parent 35c46b3a82
commit 4dbc400c86

View File

@@ -1817,7 +1817,7 @@ class e_parse extends e_parser
{ {
//$url = $this->replaceConstants($url,'abs'); //$url = $this->replaceConstants($url,'abs');
// always switch to 'nice' urls when SC is used // 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)) if(!is_array($options))