mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-18 03:35:17 +00:00
Fix logo path in entries.xml.twig
This commit is contained in:
parent
1bd9ae2a5c
commit
71e7c16dfe
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@
|
||||||
<name>{{ user }}</name>
|
<name>{{ user }}</name>
|
||||||
</author>
|
</author>
|
||||||
<icon>{{ asset('favicon.ico') }}</icon>
|
<icon>{{ asset('favicon.ico') }}</icon>
|
||||||
<logo>{{ asset('bundles/wallabagcore/themes/_global/img/logo-square.png') }}</logo>
|
<logo>{{ asset('img/logo-square.svg') }}</logo>
|
||||||
{% for entry in entries %}
|
{% for entry in entries %}
|
||||||
<entry>
|
<entry>
|
||||||
<title><![CDATA[{{ entry.title|e }}]]></title>
|
<title><![CDATA[{{ entry.title|e }}]]></title>
|
||||||
|
|
|
@ -27,7 +27,7 @@ class FeedControllerTest extends WallabagCoreTestCase
|
||||||
|
|
||||||
$this->assertSame(1, $xpath->query('/a:feed/a:title')->length);
|
$this->assertSame(1, $xpath->query('/a:feed/a:title')->length);
|
||||||
$this->assertStringContainsString('favicon.ico', $xpath->query('/a:feed/a:icon')->item(0)->nodeValue);
|
$this->assertStringContainsString('favicon.ico', $xpath->query('/a:feed/a:icon')->item(0)->nodeValue);
|
||||||
$this->assertStringContainsString('logo-square.png', $xpath->query('/a:feed/a:logo')->item(0)->nodeValue);
|
$this->assertStringContainsString('logo-square.svg', $xpath->query('/a:feed/a:logo')->item(0)->nodeValue);
|
||||||
|
|
||||||
$this->assertSame(1, $xpath->query('/a:feed/a:updated')->length);
|
$this->assertSame(1, $xpath->query('/a:feed/a:updated')->length);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue