diff --git a/htdocs/core/lib/agenda.lib.php b/htdocs/core/lib/agenda.lib.php
index 84e5bfb3f52..a67a2a1e445 100644
--- a/htdocs/core/lib/agenda.lib.php
+++ b/htdocs/core/lib/agenda.lib.php
@@ -150,6 +150,7 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
print '
';
print '| '.$langs->trans("VisibleTimeRange").' | ';
print "";
- print '';
+ print img_picto('', 'clock', 'class="fawidth30 inline-block"');
+ print "\n".' ';
print '';
if (empty($conf->dol_use_jmobile)) print ' - ';
else print ' ';
@@ -173,7 +175,8 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
print ' ';
print '| '.$langs->trans("VisibleDaysRange").' | ';
print "";
- print '';
+ print img_picto('', 'clock', 'class="fawidth30 inline-block"');
+ print "\n".' ';
print '';
if (empty($conf->dol_use_jmobile)) print ' - ';
else print ' ';
diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php
index 6d43ba49cfa..9787c75be86 100644
--- a/htdocs/core/lib/functions.lib.php
+++ b/htdocs/core/lib/functions.lib.php
@@ -3009,7 +3009,7 @@ function img_picto($titlealt, $picto, $moreatt = '', $pictoisfullpath = false, $
if (empty($srconly) && in_array($pictowithouttext, array(
'1downarrow', '1uparrow', '1leftarrow', '1rightarrow', '1uparrow_selected', '1downarrow_selected', '1leftarrow_selected', '1rightarrow_selected',
'accountancy', 'address', 'bank_account', 'barcode', 'bank', 'bill', 'bookmark', 'bom', 'building',
- 'cash-register', 'category', 'check', 'close_title', 'company', 'contact', 'contract', 'cubes',
+ 'cash-register', 'category', 'check', 'clock', 'close_title', 'company', 'contact', 'contract', 'cubes',
'delete', 'dolly', 'dollyrevert', 'edit', 'ellipsis-h', 'external-link-alt', 'external-link-square-alt',
'filter', 'file-code', 'file-export', 'file-import', 'file-upload', 'folder', 'folder-open', 'globe', 'globe-americas', 'grip', 'grip_title', 'help',
'intervention', 'label', 'language', 'list', 'listlight', 'lot',
@@ -3038,7 +3038,7 @@ function img_picto($titlealt, $picto, $moreatt = '', $pictoisfullpath = false, $
$fakey = $pictowithouttext;
$facolor = ''; $fasize = '';
$fa = 'fas';
- if (in_array($pictowithouttext, array('object_generic', 'note', 'off', 'on', 'object_bookmark', 'bookmark', 'vcard'))) {
+ if (in_array($pictowithouttext, array('clock', 'object_generic', 'note', 'off', 'on', 'object_bookmark', 'bookmark', 'vcard'))) {
$fa = 'far';
}
if (in_array($pictowithouttext, array('skype', 'twitter', 'facebook', 'linkedin', 'instagram', 'snapchat', 'stripe-s', 'youtube', 'google-plus-g', 'whatsapp'))) {
| |