[fixed] smarty_fetch_imageblock realpath error
Posted: Mon Jul 06, 2015 10:05 am
Hi,
There is a mistake in file "class.CMS_Content_block.php" at line 325.
Note the "$" before realpath function.
Correct is :
There is a mistake in file "class.CMS_Content_block.php" at line 325.
Code: Select all
if( startswith($realpath($dir),realpath($basename)) ) { ...}
Correct is :
Code: Select all
if( startswith(realpath($dir),realpath($basename)) ) { ...}