Skip to content

Commit

Permalink
Merge branch '1.2-release' into 2.0-release
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Nov 5, 2015
2 parents f009c30 + 9aa6cac commit 1b881d0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Resources/config/default_settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ parameters:
# Default template used to generate tag view page
eztags.default.tag_view.template: 'NetgenTagsBundle:tag:view.html.twig'

# Default pagelayout used in tag view page
eztags.default.tag_view.pagelayout: 'eZDemoBundle::pagelayout.html.twig'

# Default path prefix to use when generating tag view links
# Since it's NOT recommended to use empty path prefix here,
# it will fallback to /tags/view if not specified
Expand Down
10 changes: 10 additions & 0 deletions Resources/doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Netgen Tags Bundle changelog
============================

2.0.8 (05.11.2015)
------------------

* Parametrize pagelayout used in tag view page

2.0.7 (28.10.2015)
------------------

Expand Down Expand Up @@ -49,6 +54,11 @@ Netgen Tags Bundle changelog
* You can now use a container parameter to select which template will `/tags/view` controller use
* Various bug fixes and optimizations

1.2.5 (05.11.2015)
------------------

* Parametrize pagelayout used in tag view page

1.2.4 (05.11.2015)
------------------

Expand Down
2 changes: 1 addition & 1 deletion Resources/views/tag/view.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "eZDemoBundle::pagelayout.html.twig" %}
{% extends ezpublish.configResolver.parameter( 'tag_view.pagelayout', 'eztags' ) %}

{% set tagKeyword = netgen_tags_tag_keyword( tag ) %}

Expand Down

0 comments on commit 1b881d0

Please sign in to comment.