Skip to content
Snippets Groups Projects

RSS-2.0-Ausgabe escaped jetzt besser

Merged Phil Höfer requested to merge 452-such-api into development
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -3,17 +3,17 @@
xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ $eingabe }} - MetaGer</title>
<title>{!! htmlspecialchars($eingabe, ENT_XML1, 'UTF-8'); !!} - MetaGer</title>
<description></description>
<opensearch:totalResults>{{ $resultcount }}</opensearch:totalResults>
<opensearch:Query role="request" searchTerms="{{ htmlspecialchars($eingabe, ENT_QUOTES) }}"/>
@foreach($metager->getResults() as $result)
<item>
<title>{{ $result->titel }}</title>
<link>{{ $result->link }}</link>
<title>{!! htmlspecialchars($result->titel, ENT_XML1, 'UTF-8'); !!}</title>
<link>{!! htmlspecialchars($result->link, ENT_XML1, 'UTF-8'); !!}</link>
<description>
{{ $result->descr }}
{!! htmlspecialchars($result->descr, ENT_XML1, 'UTF-8'); !!}
</description>
</item>
@endforeach
Loading