Hi,
my error_log is flooded by

PHP Notice: Undefined index: 204 in /var/www/eurojump/sites/all/modules/ad_geoip/ad_geoip.inc on line 26, referer: URL
PHP Warning: Invalid argument supplied for foreach() in /var/www/eurojump/sites/all/modules/ad_geoip/ad_geoip.inc on line 26, referer: URL

Actually we are using drupal 6.20 and ad_geoip 6.x-2.x-dev.

Anyone that have the same issue? Any hint on how to solve it?

TIA,
Daniele

Comments

Daniele’s picture

Actually my dirty solutions is the following

      if (!array_key_exists($aid, $geoip) ||
            !array_key_exists($target, $geoip[$aid])) {
        $geoip[$aid][$target] = Array();
      }

.... not so good really :(