Trustmaster |
|
---|---|
It is deprecated since PHP 5.3.0. A fix:
$dir = opendir($folder);
while(false !== ($file = readdir($dir))){
for ($i = 0; $i < count($xt); $i++){
Line 122------> if (preg_match('#\.'. $xt[$i] .'$#', $file)){
$files[] = $file;
}
}
} May the Source be with you!
|