diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-06-18 19:18:38 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-06-18 19:18:38 +0100 |
| commit | f5e154c8672be3a4ccbde95f06b5901f8b0ebace (patch) | |
| tree | 4b5a9f7464ea89a0855d475b8f644e594c216b84 | |
| parent | 88eed73b339ec4588da6aaa0851262aa65e0a83f (diff) | |
| download | stock-f5e154c8672be3a4ccbde95f06b5901f8b0ebace.tar.gz stock-f5e154c8672be3a4ccbde95f06b5901f8b0ebace.tar.bz2 stock-f5e154c8672be3a4ccbde95f06b5901f8b0ebace.zip | |
Use getParsedData() in assembly simple view
Replaces raw data|escape with parsed output so assembly descriptions
render as HTML rather than escaped markup.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| -rwxr-xr-x | templates/stock_simple_list_inc.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/stock_simple_list_inc.tpl b/templates/stock_simple_list_inc.tpl index 935e8bd..434577b 100755 --- a/templates/stock_simple_list_inc.tpl +++ b/templates/stock_simple_list_inc.tpl @@ -11,7 +11,7 @@ {include file="bitpackage:liberty/services_inc.tpl" serviceLocation='body' serviceHash=$gContent->mInfo} {if $gContent->mInfo.data} - <p>{$gContent->mInfo.data|escape}</p> + <div class="content">{$gContent->getParsedData()}</div> {/if} </section> |
