From 4bf822225e795e23e3e6cf4d8c2b1a4e686798c4 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 19 Mar 2014 23:50:10 +0100 Subject: [PATCH] Look: info admin picto now use the info picto (the star were confused with the mandatory "star"). --- htdocs/core/lib/functions.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index efcbff69a13..db204b53ebd 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -2223,10 +2223,10 @@ function info_admin($text, $infoonimgalt = 0, $nodiv=0) if ($infoonimgalt) { - return img_picto($text, 'star', 'class="hideonsmartphone"'); + return img_picto($text, 'info', 'class="hideonsmartphone"'); } - return ($nodiv?'':'
').img_picto($langs->trans('InfoAdmin'), 'star', 'class="hideonsmartphone"').' '.$text.($nodiv?'':'
'); + return ($nodiv?'':'
').img_picto($langs->trans('InfoAdmin'), 'info', 'class="hideonsmartphone"').' '.$text.($nodiv?'':'
'); }