Skip to content
Snippets Groups Projects
Commit f1d8f68d authored by Phil Höfer's avatar Phil Höfer
Browse files

Merge branch '652-anzahl-der-suchergebnisse-ausgeben' into 'development'

Resolve "Anzahl der Suchergebnisse ausgeben"

Closes #652

See merge request !1247
parents ae733e7c a9154ecd
No related branches found
No related tags found
2 merge requests!1262WIP: Resolve "Spendenseite Texte anpassen",!1247Resolve "Anzahl der Suchergebnisse ausgeben"
......@@ -197,7 +197,8 @@ class MetaGer
->with('apiAuthorized', $this->apiAuthorized)
->with('metager', $this)
->with('browser', (new Agent())->browser())
->with('quicktips', $quicktipResults);
->with('quicktips', $quicktipResults)
->with('resultcount', count($this->results));
break;
}
}
......@@ -385,7 +386,6 @@ class MetaGer
$this->ads[] = $ad;
}
}
}
public function parseAdgoal($results)
......@@ -1284,8 +1284,8 @@ class MetaGer
if ($result->isValid($this)) {
$results[] = $result;
}
}
$this->results = $results;
}
public function atLeastOneSearchengineSelected(Request $request)
......
......@@ -93,7 +93,7 @@ abstract class Searchengine
abstract public function loadResults($result);
# ???
# Standardimplementierung der getNext Funktion, damit diese immer verwendet werden kann
public function getNext(MetaGer $metager, $result)
{
......
......@@ -31,9 +31,6 @@
@include('parts.errors')
@include('parts.warnings')
@yield('results')
@if( $metager->showQuicktips() )
<div id="quicktips"></div>
@endif
</div>
<div id="additions-container">
<div id="search-settings">
......
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