Merge pull request #1766 from wallabag/v2-add-wallabag-in-title

Fix #1756: Added 'wallabag' in page title
This commit is contained in:
Jeremy Benoist 2016-03-08 15:49:13 +01:00
commit d460a7377a
4 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@
<script src="{{ asset('bundles/wallabagcore/themes/_global/js/annotator.min.js') }}"></script> <script src="{{ asset('bundles/wallabagcore/themes/_global/js/annotator.min.js') }}"></script>
{% endblock %} {% endblock %}
<title>{% block title %}{% endblock %}</title> <title>wallabag - {% block title %}{% endblock %}</title>
{% endblock %} {% endblock %}
</head> </head>

View File

@ -351,7 +351,7 @@ class PocketImportTest extends \PHPUnit_Framework_TestCase
$this->em $this->em
->expects($this->any()) ->expects($this->any())
->method('persist') ->method('persist')
->with($this->callback(function($persistedEntry) { ->with($this->callback(function ($persistedEntry) {
return $persistedEntry->isArchived(); return $persistedEntry->isArchived();
})); }));

View File

@ -103,7 +103,7 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase
$this->em $this->em
->expects($this->any()) ->expects($this->any())
->method('persist') ->method('persist')
->with($this->callback(function($persistedEntry) { ->with($this->callback(function ($persistedEntry) {
return $persistedEntry->isArchived(); return $persistedEntry->isArchived();
})); }));

View File

@ -94,7 +94,7 @@ class WallabagV2ImportTest extends \PHPUnit_Framework_TestCase
$this->em $this->em
->expects($this->any()) ->expects($this->any())
->method('persist') ->method('persist')
->with($this->callback(function($persistedEntry) { ->with($this->callback(function ($persistedEntry) {
return $persistedEntry->isArchived(); return $persistedEntry->isArchived();
})); }));