Skip to content
Snippets Groups Projects
Commit 3e5101ff authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch 'patch' into 'master'

Bugfix

See merge request !1045
parents fc31e73e fea5c5e6
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -26,6 +26,7 @@ class Fastbot extends Searchengine ...@@ -26,6 +26,7 @@ class Fastbot extends Searchengine
if (strlen($line) > 0) { if (strlen($line) > 0) {
# Hier bekommen wir jedes einzelne Ergebnis # Hier bekommen wir jedes einzelne Ergebnis
$result = explode("|:|", $line); $result = explode("|:|", $line);
if(count($result) < 4) continue;
$link = $result[1]; $link = $result[1];
$link = substr($link, strpos($link, "href=\"") + 6); $link = substr($link, strpos($link, "href=\"") + 6);
$link = substr($link, 0, strpos($link, "\"")); $link = substr($link, 0, strpos($link, "\""));
......
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