aboutsummaryrefslogtreecommitdiffstats
path: root/core/functions.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 16:23:56 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 16:23:56 +0200
commit1d921fc04bf73c6ca879f13e9737ad52596748c5 (patch)
treef107bf01998261e239cef6eb1cac9c019f2ab69f /core/functions.php
parent93d7ccc3a1ac46738e29ba3ffd4b9abe92c6b39f (diff)
downloadblog-1d921fc04bf73c6ca879f13e9737ad52596748c5.tar.gz
blog-1d921fc04bf73c6ca879f13e9737ad52596748c5.tar.xz
blog-1d921fc04bf73c6ca879f13e9737ad52596748c5.zip
Use function generatePseudoGUID
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 ca13e3d..1af8e36 100644
--- a/core/functions.php
+++ b/core/functions.php
@@ -80,7 +80,7 @@ function generateItemTemplateData(Item $Item): array {
return [
'URL' => Application::getEntityURL($Item),
- 'GUID' => $Item->getGUID(),
+ 'GUID' => generatePseudoGUID($Item),
'ARGV' => $Item->getArguments(),
'ATTR' => $ATTR,