aboutsummaryrefslogtreecommitdiffstats
path: root/core/functions.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 18:38:46 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 18:38:46 +0200
commit3c1f5e3427e3e45a11b772dfe24da2cef63f91f0 (patch)
tree9a8ff8a4a7762aad934292caf0c8e66ab782d8f6 /core/functions.php
parentbf57f3dcba5864b63882c273d25403c28637eeab (diff)
downloadblog-3c1f5e3427e3e45a11b772dfe24da2cef63f91f0.tar.gz
blog-3c1f5e3427e3e45a11b772dfe24da2cef63f91f0.tar.xz
blog-3c1f5e3427e3e45a11b772dfe24da2cef63f91f0.zip
Use function parseEntityContent
Diffstat (limited to 'core/functions.php')
-rw-r--r--core/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/functions.php b/core/functions.php
index 3a3dbdf..7157e03 100644
--- a/core/functions.php
+++ b/core/functions.php
@@ -99,7 +99,7 @@ function generateItemTemplateData(Item $Item): array {
return $preparsed;
},
'HTML' => function() use($Item) {
- return $Item->getHTML();
+ return parseEntityContent($Item);
}
]
];