From e2fcf239851e502ed1c987a30d2b8347dc81e00d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 22 Jan 2011 09:54:55 +0000 Subject: [PATCH] Fix: Size of picto --- htdocs/admin/system/modules.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/admin/system/modules.php b/htdocs/admin/system/modules.php index acb18e0fc3c..7efa93a8fc6 100644 --- a/htdocs/admin/system/modules.php +++ b/htdocs/admin/system/modules.php @@ -97,12 +97,12 @@ foreach($sortorder as $numero=>$name) $alt=$name.' - '.$modules_files[$numero]; if (! empty($picto[$numero])) { - if (preg_match('/^\//',$picto[$numero])) print img_picto($alt,$picto[$numero],'width="16px"',1); - else print img_object($alt,$picto[$numero],'width="16px"'); + if (preg_match('/^\//',$picto[$numero])) print img_picto($alt,$picto[$numero],'width="14px"',1); + else print img_object($alt,$picto[$numero],'width="14px"'); } else { - print img_object($alt,$picto[$numero],'width="16px"'); + print img_object($alt,$picto[$numero],'width="14px"'); } print ' '.$modules[$numero]->getName(); print "";