From 9bfcabc8c9b8dcd7d073b2d7a930f65200a59048 Mon Sep 17 00:00:00 2001 From: Inovea Conseil Date: Mon, 10 Dec 2018 16:09:56 +0100 Subject: [PATCH] NEW: Add note in tooltips --- htdocs/comm/action/class/actioncomm.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/comm/action/class/actioncomm.class.php b/htdocs/comm/action/class/actioncomm.class.php index aef77513e7b..af6ead5017b 100644 --- a/htdocs/comm/action/class/actioncomm.class.php +++ b/htdocs/comm/action/class/actioncomm.class.php @@ -1292,7 +1292,8 @@ class ActionComm extends CommonObject $tooltip .= '
' . $langs->trans('Type') . ': ' . $labeltype; if (! empty($this->location)) $tooltip .= '
' . $langs->trans('Location') . ': ' . $this->location; - + if (! empty($this->note)) + $tooltip .= '
' . $langs->trans('Note') . ': ' . $this->note; $linkclose=''; if (! empty($conf->global->AGENDA_USE_EVENT_TYPE) && $this->type_color) $linkclose = ' style="background-color:#'.$this->type_color.'"';