Skip to content
Snippets Groups Projects
Commit da8e59ac authored by Karl Hasselbring's avatar Karl Hasselbring
Browse files

Merge branch '250-automatische-auswahl-des-ergebnistabs-funktioniert-nicht' into 'development'

Jetzt funktioniert die Anpassung auch für Nachrichten

Closes #250

See merge request !417
parents 6dacf633 d914d590
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
......@@ -554,11 +554,19 @@ class MetaGer
# Wenn foki für diese Suchmaschine angegeben sind
$focuses = explode(",", $suma['type']->__toString());
foreach ($focuses as $foc) {
$foki[$foc][] = $suma['name']->__toString();
if (isset($suma['minismCollection'])) {
$foki[$foc][] = "minism";
} else {
$foki[$foc][] = $suma['name']->__toString();
}
}
} else {
# Wenn keine foki für diese Suchmaschine angegeben sind
$foki["andere"][] = $suma['name']->__toString();
if (isset($suma['minismCollection'])) {
$foki["andere"][] = "minism";
} else {
$foki["andere"][] = $suma['name']->__toString();
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment