Hallo,
mit PHP5.3 tauchen ja nun ab und zu deprecated Meldungen auf.
Aktuell geht es bei mir um view_overview.php Zeile 178:
<?php // bunt
if (eregi(".php", $image_file) || substr($image_file, 0, 1) == ".") {
Kann man das so ändern?:
<?php // bunt
if (preg_match("/\.php/i", $image_file) || substr($image_file, 0, 1) == ".") {
dbs