Skip to content

Commit

Permalink
Merge pull request #5755 from defrance/patch-27
Browse files Browse the repository at this point in the history
Prevent space separator in module definition
  • Loading branch information
eldy committed Sep 17, 2016
2 parents 7afdfd5 + 3d8f756 commit 3a0db4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/admin/dict.php
Expand Up @@ -580,7 +580,7 @@
// Actions add or modify an entry into a dictionary
if (GETPOST('actionadd') || GETPOST('actionmodify'))
{
$listfield=explode(',',$tabfield[$id]);
$listfield=explode(',', str_replace(' ', '',$tabfield[$id]));
$listfieldinsert=explode(',',$tabfieldinsert[$id]);
$listfieldmodify=explode(',',$tabfieldinsert[$id]);
$listfieldvalue=explode(',',$tabfieldvalue[$id]);
Expand Down

0 comments on commit 3a0db4a

Please sign in to comment.