Search found 1 match

by ZHB
Mon Jul 06, 2015 10:05 am
Forum: Closed Issues
Topic: [fixed] smarty_fetch_imageblock realpath error
Replies: 1
Views: 9809

[fixed] smarty_fetch_imageblock realpath error

Hi,

There is a mistake in file "class.CMS_Content_block.php" at line 325.

Code: Select all

if( startswith($realpath($dir),realpath($basename)) ) { ...}
Note the "$" before realpath function.

Correct is :

Code: Select all

if( startswith(realpath($dir),realpath($basename)) ) { ...}

Go to advanced search