Skip to content
Snippets Groups Projects
Commit 879b9de4 authored by Karl's avatar Karl
Browse files

Jetzt funktioniert die Anpassung auch für Nachrichten

parent 9f010b03
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