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

set contenttype

parent 002887eb
No related branches found
No related tags found
2 merge requests!1036Development,!1033Resolve "Atom 1.0 Format hinzufuegen"
......@@ -165,12 +165,13 @@ class MetaGer
->with('resultcount', sizeof($viewResults));
break;
case 'atom10':
return view('metager3resultsatom10')
return response()->view('metager3resultsatom10')
->with('results', $viewResults)
->with('eingabe', $this->eingabe)
->with('apiAuthorized', $this->apiAuthorized)
->with('metager', $this)
->with('resultcount', sizeof($viewResults));
->with('resultcount', sizeof($viewResults))
->header('Content-Type', 'application/xml');
break;
case 'result-count':
# Wir geben die Ergebniszahl und die benötigte Zeit zurück:
......
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