Skip to content

Commit

Permalink
com_application
Browse files Browse the repository at this point in the history
- fixed: using correct implode syntax in dispatcher
  • Loading branch information
rmdstudio committed Aug 16, 2022
1 parent 09946cb commit f7b278e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/com_application/dispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ protected function _actionPrepclienv(AnCommandContext $context)
$file = array_shift($args);
}

$args = explode('&-data&', implode($args, '&'));
$args = explode('&-data&', implode('&', $args));
$args = array_filter($args, 'trim');

foreach ($args as $i => $arg) {
Expand Down

0 comments on commit f7b278e

Please sign in to comment.