diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-21 19:01:30 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-21 19:01:30 +0200 |
commit | ba7c1b55fb22e893f39f0519e135d881353088fc (patch) | |
tree | 7cee510e38853d51952c11e8e510d2f325ba5c37 | |
parent | 95ce6b8cea9bb79f82e43f99639fa3371a809cbb (diff) | |
download | blog-ba7c1b55fb22e893f39f0519e135d881353088fc.tar.gz blog-ba7c1b55fb22e893f39f0519e135d881353088fc.tar.xz blog-ba7c1b55fb22e893f39f0519e135d881353088fc.zip |
Use function parseArguments
-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 5fd1b39..f674244 100644 --- a/core/functions.php +++ b/core/functions.php @@ -83,7 +83,7 @@ function generateItemTemplateData(Item $Item): array { return [ 'URL' => Application::getEntityURL($Item), 'GUID' => generatePseudoGUID($Item), - 'ARGV' => $Item->getArguments(), + 'ARGV' => parseArguments($Item->attr('argv')), 'ATTR' => $ATTR, |