Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/Twig/ContentTaggingExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ public function getFunctions()
// For 2.5 BC, and to be consistent with the other functions, to be cleaned up with new prefix in the future
new TwigFunction(
'ez_http_tag_location',
[$this, 'tagHttpCacheForLocation']
[$this, 'tagHttpCacheForLocation'],
[
'deprecated' => true,
'alternative' => 'ez_http_cache_tag_location',
]
),
new TwigFunction(
'ez_http_tag_relation_ids',
Expand Down