aboutsummaryrefslogtreecommitdiffstats
path: root/core/functions.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 19:01:30 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 19:01:30 +0200
commitba7c1b55fb22e893f39f0519e135d881353088fc (patch)
tree7cee510e38853d51952c11e8e510d2f325ba5c37 /core/functions.php
parent95ce6b8cea9bb79f82e43f99639fa3371a809cbb (diff)
downloadblog-ba7c1b55fb22e893f39f0519e135d881353088fc.tar.gz
blog-ba7c1b55fb22e893f39f0519e135d881353088fc.tar.xz
blog-ba7c1b55fb22e893f39f0519e135d881353088fc.zip
Use function parseArguments
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 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,