Всем привет!
ShopCMS 3.0 rc2
Нужна помощь: в админке в отчетах ошибок постоянно ссылка на admin.php, линия 1750. Там вот это:
------------------------
if ( defined( "UPDATEDESIGND" ) )
{
$path = "cache";
$handled = opendir( $path );
while ( false !== ( $file = readdir( $handled ) ) )
{
if ( !( $file != ".htaccess" ) || !( $file != "." ) || !( $file != ".." ) )
{
unlink( $path."/".$file ); // <= 1750
}
}
closedir( $handled );
}
--------------------------------
Где грабли?
Заранее благодарю!!!
Сделай так
PHP:
$path = "cache";
$handled = opendir( $path );
while ( false !== ( $file = readdir( $handled ) ) )
{
if ( !($file!= ".htaccess" ) || !( $file != "." ) || !( $file != ".." )) continue;
unlink( $path."/".$file ); // <= 1750
}
closedir( $handled );