diff --git a/htdocs/admin/defaultvalues.php b/htdocs/admin/defaultvalues.php
index b758506f8b5..e4ba112511e 100644
--- a/htdocs/admin/defaultvalues.php
+++ b/htdocs/admin/defaultvalues.php
@@ -269,12 +269,12 @@ if ($mode != 'focus')
{
if ($mode != 'sortorder')
{
- $substitutionarray=getCommonSubstitutionArray($langs, 0, array('object')); // Must match list into GETPOST
- $substitutionarray['__(AnyTranslationKey)__']=$langs->trans("Translation");
+ $substitutionarray=getCommonSubstitutionArray($langs, 2, array('object','objectamount')); // Must match list into GETPOST
+ unset($substitutionarray['__USER_SIGNATURE__']);
$texthelp=$langs->trans("FollowingConstantsWillBeSubstituted").'
';
foreach($substitutionarray as $key => $val)
{
- $texthelp.=$key.'
';
+ $texthelp.=$key.' -> '.$val.'
';
}
$textvalue=$form->textwithpicto($langs->trans("Value"), $texthelp, 1, 'help', '', 0, 2, ''); // No tooltip on click, this also triggers the sort click
}