diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-21 16:23:56 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-21 16:23:56 +0200 |
commit | 1d921fc04bf73c6ca879f13e9737ad52596748c5 (patch) | |
tree | f107bf01998261e239cef6eb1cac9c019f2ab69f | |
parent | 93d7ccc3a1ac46738e29ba3ffd4b9abe92c6b39f (diff) | |
download | blog-1d921fc04bf73c6ca879f13e9737ad52596748c5.tar.gz blog-1d921fc04bf73c6ca879f13e9737ad52596748c5.tar.xz blog-1d921fc04bf73c6ca879f13e9737ad52596748c5.zip |
Use function generatePseudoGUID
-rw-r--r-- | core/functions.php | 2 |
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, |