Ein Bug im Geo2 Maps Add-on ist in Zeile 590 functions.php des Plugins:
alt:
// Aperture
if (@array_key_exists( 'ApertureFNumber', $exif_ifd0['COMPUTED'] ) ) {
neu (auf dem Website geändert):
// Aperture
if (
@array_key_exists( 'COMPUTED', $exif_ifd0 ) &&
@array_key_exists( 'ApertureFNumber', $exif_ifd0['COMPUTED'] )
) {
Alles anzeigen
Das behebt den Fatal Error:
array_key_exists(): Argument #2 ($array) must be of type array, null given
Und noch ein kleiner Fix in Zeile 816 bing_map_functions.php
if (!isset($picture_data->id)) $picture_data->id = 0; // ergänzt
Bleiben ggf. noch weitere PHP Warnings im Geo2 Maps Add-on bzw. NextGEN Plugin selbst, die man derzeit sieht, weil in PHP [FONT=Courier New]error_reporting[/FONT] mit [FONT=Courier New]E_WARNING[/FONT] eingestellt ist.