diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php
index 0bb01da357d..3a99965e301 100644
--- a/htdocs/core/class/html.form.class.php
+++ b/htdocs/core/class/html.form.class.php
@@ -5851,7 +5851,13 @@ class Form
{
$ret.=dol_htmlentities($object->getFullName($langs));
}
+ else if (in_array($object->element, array('action', 'agenda')))
+ {
+ $ret.=$object->label;
+ }
else if ($fieldref != 'none') $ret.=dol_htmlentities($object->$fieldref);
+
+
if ($morehtmlref)
{
$ret.=' '.$morehtmlref;