|
1 | 1 | {if !$beforeContentInteraction|empty} |
2 | | - {@$beforeContentInteraction} |
| 2 | + {unsafe:$beforeContentInteraction} |
3 | 3 | {/if} |
4 | 4 |
|
5 | 5 | {capture assign='__contentInteractionPagination'} |
6 | | - {if $contentInteractionPagination|isset}{@$contentInteractionPagination}{/if} |
| 6 | + {if $contentInteractionPagination|isset}{unsafe:$contentInteractionPagination}{/if} |
7 | 7 | {/capture} |
8 | 8 | {assign var='__contentInteractionPagination' value=$__contentInteractionPagination|trim} |
9 | 9 |
|
10 | 10 | {capture assign='__contentInteractionButtons'} |
11 | 11 | {event name='beforeButtons'} |
12 | | - {if $contentInteractionButtons|isset}{@$contentInteractionButtons}{/if} |
| 12 | + {if $contentInteractionButtons|isset}{unsafe:$contentInteractionButtons}{/if} |
13 | 13 | {event name='afterButtons'} |
14 | 14 | {/capture} |
15 | 15 | {assign var='__contentInteractionButtons' value=$__contentInteractionButtons|trim} |
16 | 16 |
|
17 | 17 | {capture assign='__contentInteractionDropdownItems'} |
18 | 18 | {event name='beforeDropdownItems'} |
19 | | - {if $contentInteractionDropdownItems|isset}{@$contentInteractionDropdownItems}{/if} |
| 19 | + {if $contentInteractionDropdownItems|isset}{unsafe:$contentInteractionDropdownItems}{/if} |
20 | 20 | {event name='afterDropdownItems'} |
21 | 21 | {/capture} |
22 | 22 | {assign var='__contentInteractionDropdownItems' value=$__contentInteractionDropdownItems|trim} |
23 | 23 |
|
24 | 24 | {capture assign='__contentInteractionShareButton'} |
25 | | - {if $contentInteractionShareButton|isset}{@$contentInteractionShareButton}{/if} |
| 25 | + {if $contentInteractionShareButton|isset}{unsafe:$contentInteractionShareButton}{/if} |
26 | 26 | {/capture} |
27 | 27 | {assign var='__contentInteractionShareButton' value=$__contentInteractionShareButton|trim} |
28 | 28 |
|
|
32 | 32 | {unsafe:$contentInteractionTabsComponent->render()} |
33 | 33 | {elseif $__contentInteractionPagination} |
34 | 34 | <div class="contentInteractionPagination paginationTop"> |
35 | | - {@$__contentInteractionPagination} |
| 35 | + {unsafe:$__contentInteractionPagination} |
36 | 36 | </div> |
37 | 37 | {/if} |
38 | 38 |
|
39 | 39 | {if $__contentInteractionButtons || $__contentInteractionDropdownItems || $__contentInteractionShareButton} |
40 | 40 | <div class="contentInteractionButtonContainer"> |
41 | 41 | {if $__contentInteractionButtons} |
42 | 42 | <div class="contentInteractionButtons"> |
43 | | - {@$__contentInteractionButtons} |
| 43 | + {unsafe:$__contentInteractionButtons} |
44 | 44 | </div> |
45 | 45 | {/if} |
46 | 46 |
|
47 | 47 | {if $__contentInteractionShareButton} |
48 | 48 | <div class="contentInteractionShareButton"> |
49 | | - {@$__contentInteractionShareButton} |
| 49 | + {unsafe:$__contentInteractionShareButton} |
50 | 50 | </div> |
51 | 51 | {/if} |
52 | 52 |
|
|
55 | 55 | <button type="button" class="button small dropdownToggle" aria-label="{lang}wcf.global.button.more{/lang}">{icon name='ellipsis-vertical'}</button> |
56 | 56 |
|
57 | 57 | <ul class="contentInteractionDropdownItems dropdownMenu"> |
58 | | - {@$__contentInteractionDropdownItems} |
| 58 | + {unsafe:$__contentInteractionDropdownItems} |
59 | 59 | </ul> |
60 | 60 | </div> |
61 | 61 | {/if} |
|
0 commit comments