Ich möchte den Thread kurz ausgraben.
Dieses Problem tritt bei mir auf, wenn ich in einem Album oben rechts auf den Button "neues Bild in dieses Album hochladen" gehe.
Ich gehe davon aus dass das Problem hier liegt:
In der Datei /includes/module/gallery/bild.inc.php ist ab Linie 24 folgendes zu lesen:
|
PHP-Quelltext
|
1
2
3
4
5
6
7
8
|
function get_endung($string) {
$arrFile = explode(".", $string);
$intCount = count($arrFile);
return (strtolower($arrFile[$intCount - 1]));
}
|
In der Datei /admin/inc/functions/config.inc.php ab Linie 104 folgendes zu lesen:
|
PHP-Quelltext
|
1
2
3
4
5
6
7
8
|
function get_endung($string) {
$arrFile = explode(".", $string);
$intCount = count($arrFile);
return (strtolower($arrFile[$intCount - 1]));
}
|
Gruss
Dominic