For all anonymous users, I am getting the following PHP notice filling up my error log. " Undefined index: millennium_variable_set in /srv/data/apache2/hosts/library/htdocs/sites/all/modules/millennium/millennium.module on line 2899" . This is from a view that includes only the book jacket (millennium component) for display. This error does not appear when I'm logged in... Any thoughts?

Comments

janusman’s picture

Priority: Normal » Major

Could you try, for now, replacing that line:

  if ($conf['millennium_variable_set'] == TRUE) {

with this one?

  if (isset($conf['millennium_variable_set']) && $conf['millennium_variable_set'] == TRUE) {
janusman’s picture

Fixed in DEV version. If possible try using the DEV version to see if this fixes things.

janusman’s picture

Status: Active » Closed (fixed)