Skip to content
Snippets Groups Projects
Commit 2949aadd 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 39fd8d99 879b9de4
No related branches found
No related tags found
2 merge requests!421Development,!417Jetzt funktioniert die Anpassung auch für Nachrichten
......@@ -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