diff --git a/app/Models/parserSkripte/Fastbot.php b/app/Models/parserSkripte/Fastbot.php index 6e9dc3b4dd2dfdc2ce95df4e2d32b4a7ab61bb53..8fd1c19b63b8578dcdf4e66f283b950800d933e9 100644 --- a/app/Models/parserSkripte/Fastbot.php +++ b/app/Models/parserSkripte/Fastbot.php @@ -30,7 +30,8 @@ class Fastbot extends Searchengine $link = $result[1]; $link = substr($link, strpos($link, "href=\"") + 6); $link = substr($link, 0, strpos($link, "\"")); - $counter++; + $counter++; + $this->gefVon = "<a href=\"" . $this->homepage . "\" target=\"_blank\">" . $this->displayName . " " . trans('results.redirect') . "</a>"; $this->results[] = new \App\Models\Result( $this->engine, trim(strip_tags($result[1])), diff --git a/resources/lang/de/results.php b/resources/lang/de/results.php new file mode 100644 index 0000000000000000000000000000000000000000..51846bd49857c27b8a253a510a6338fed1aa0311 --- /dev/null +++ b/resources/lang/de/results.php @@ -0,0 +1,5 @@ +<?php + +return [ + 'redirect' => '(mit redirect)', +]; \ No newline at end of file diff --git a/resources/lang/en/results.php b/resources/lang/en/results.php new file mode 100644 index 0000000000000000000000000000000000000000..28691be0252df2cbb1f4437cf3dcb1647b9c63ad --- /dev/null +++ b/resources/lang/en/results.php @@ -0,0 +1,5 @@ +<?php + +return [ + 'redirect' => '(with redirect)', +]; \ No newline at end of file