]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Added 'wallabag' in page title 1766/head
authorNicolas Lœuillet <nicolas@loeuillet.org>
Tue, 8 Mar 2016 14:22:35 +0000 (15:22 +0100)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Tue, 8 Mar 2016 14:22:35 +0000 (15:22 +0100)
src/Wallabag/CoreBundle/Resources/views/base.html.twig
src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php
src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php
src/Wallabag/ImportBundle/Tests/Import/WallabagV2ImportTest.php

index 4c0d4fee99470d5f5b078700acef030346bbdb9e..dacdb9ca7437d6286bcf9a7188efd7089860733d 100644 (file)
@@ -47,7 +47,7 @@
                 <script src="{{ asset('bundles/wallabagcore/themes/_global/js/annotator.min.js') }}"></script>
             {% endblock %}
 
-            <title>{% block title %}{% endblock %}</title>
+            <title>wallabag - {% block title %}{% endblock %}</title>
         {% endblock %}
     </head>
 
index bc9e2f422d632e2ee0fe6d1e71b0c89201c5dd7e..92712b9d30a8dfcdf1071ee8d94ef4c7bfc7c849 100644 (file)
@@ -351,7 +351,7 @@ class PocketImportTest extends \PHPUnit_Framework_TestCase
         $this->em
             ->expects($this->any())
             ->method('persist')
-            ->with($this->callback(function($persistedEntry) {
+            ->with($this->callback(function ($persistedEntry) {
                 return $persistedEntry->isArchived();
             }));
 
index fbcd270d31d6a39bcf8dd5ef374b243d9e955d3b..8ab7e83012b7298d138aa0ef998c88522d2d525b 100644 (file)
@@ -103,7 +103,7 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase
         $this->em
             ->expects($this->any())
             ->method('persist')
-            ->with($this->callback(function($persistedEntry) {
+            ->with($this->callback(function ($persistedEntry) {
                 return $persistedEntry->isArchived();
             }));
 
index c461168ce5344a52f5cf3a6954b5b5310daa93b5..2b642d2743af6b3803aef221887610e43a5a99e4 100644 (file)
@@ -94,7 +94,7 @@ class WallabagV2ImportTest extends \PHPUnit_Framework_TestCase
         $this->em
             ->expects($this->any())
             ->method('persist')
-            ->with($this->callback(function($persistedEntry) {
+            ->with($this->callback(function ($persistedEntry) {
                 return $persistedEntry->isArchived();
             }));