Hi,
I set up 3 Views and 3 Finder Blocks.
All 3 Finder blocks are displayed at the same time in my left column.

When I put a search inside the lowest Finder-search block, everything is fine.
If I put a search in the middle Finder-search block, I receive an error concerning the lowest finder-block.
If I put a search in the top Finder-search block, I receive two errors concerning the lowest and the middle finder-block.

    Notice: Undefined index: hotelname in finder_form_state() (Zeile 367 von /home/www/cms/sites/all/modules/finder/includes/form.inc).
    Notice: Undefined index: suche_nach_paketnummern in finder_form_state() (Zeile 367 von /home/www/cms/sites/all/modules/finder/includes/form.inc).

As I can see, everything is fine - only the message is there ....
Can anyone help?

Comments

danielb’s picture

in includes/form.inc (within the finder module dir)
try changing:

return $finder_form_state[$finder->name];

to this:

if (!empty($finder_form_state[$finder->name])) {
  return $finder_form_state[$finder->name];
}

if that fixes the problem I can add it to the module

vistree’s picture

Status: Active » Fixed

Thank you Danielb,
this fixes the problem!

Kind regards and a nice weekend

danielb’s picture

Status: Fixed » Active

don't change the issue settings

danielb’s picture

Status: Active » Fixed

I've committed that change, and so now it is fixed :P

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.