Skip to content

Commit 4f0cff0

Browse files
author
Antoine Lelaisant
authored
Merge pull request #65 from sanpii/template-paths
Fixed twig template paths
2 parents c4a09f8 + 128c3e2 commit 4f0cff0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/Knp/DictionaryBundle/Resources/config/dictionary.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
33
<services>
44
<service id="knp_dictionary.data_collector.dictionary_data_collector" class="Knp\DictionaryBundle\DataCollector\DictionaryDataCollector">
5-
<tag name="data_collector" template="KnpDictionaryBundle::layout.html.twig" id="dictionary"/>
5+
<tag name="data_collector" template="@KnpDictionary/layout.html.twig" id="dictionary"/>
66
</service>
77

88
<service id="knp_dictionary.dictionary.factory.factory_aggregate" class="Knp\DictionaryBundle\Dictionary\Factory\FactoryAggregate"/>

Diff for: src/Knp/DictionaryBundle/Resources/views/layout.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
1+
{% extends '@WebProfiler/Profiler/layout.html.twig' %}
22

33
{% block menu %}
44
<span class="label {{ collector.dictionaries is empty ? 'disabled' }}">

0 commit comments

Comments
 (0)