Форуми / Cotonti / Extensions / X-Tra pics

Trustmaster
#22942 16.02.2010 05:11
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!