fix: Use correct config variables post L10-config update
Specifically the header name had disappeared.
This commit is contained in:
parent
7edac37e16
commit
462c710295
8 changed files with 17 additions and 17 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>Atom feed for {{ config('app.display_name') }}’s notes</title>
|
||||
<title>Atom feed for {{ config('user.display_name') }}’s notes</title>
|
||||
<link rel="self" href="{{ config('app.url') }}/notes/feed.atom" />
|
||||
<id>{{ config('app.url')}}/notes</id>
|
||||
<updated>{{ $notes[0]->updated_at->toAtomString() }}</updated>
|
||||
|
@ -13,7 +13,7 @@
|
|||
<updated>{{ $note->updated_at->toAtomString() }}</updated>
|
||||
<content type="html">{{ $note->note }}</content>
|
||||
<author>
|
||||
<name>{{ config('app.display_name') }}</name>
|
||||
<name>{{ config('user.display_name') }}</name>
|
||||
</author>
|
||||
</entry>
|
||||
@endforeach
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue