We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47acb37 commit 14a3d52Copy full SHA for 14a3d52
components/com_jtg/models/track.php
@@ -210,7 +210,7 @@ function saveFile ()
210
$level = $input->get('level', 0, 'integer');
211
$title = $input->get('title', '', 'string');
212
$terrain = $input->get('terrain', null, 'array');
213
- $terrain = $terrain ? implode(', ', $terrain) : '';
+ $terrain = $terrain ? implode(',', $terrain) : '';
214
$desc = $db->escape(implode(' ', $input->get('description', '', 'array')));
215
$file = $input->files->get('file');
216
$uid = $user->id;
@@ -713,7 +713,7 @@ function updateFile ($id)
713
714
if ($terrain)
715
{
716
717
}
718
else
719
0 commit comments