Fix: Size of picto

This commit is contained in:
Laurent Destailleur 2011-01-22 09:54:08 +00:00
parent 0b74a452ce
commit a1111524e3

View File

@ -19,8 +19,8 @@
*/ */
/** /**
* \file htdocs/admin/system/dolibarr.php * \file htdocs/admin/system/modules.php
* \brief Fichier page info systemes Dolibarr * \brief File to list all Dolibarr modules
* \version $Id$ * \version $Id$
*/ */
@ -97,12 +97,12 @@ foreach($sortorder as $numero=>$name)
$alt=$name.' - '.$modules_files[$numero]; $alt=$name.' - '.$modules_files[$numero];
if (! empty($picto[$numero])) if (! empty($picto[$numero]))
{ {
if (preg_match('/^\//',$picto[$numero])) print img_picto($alt,$picto[$numero],'',1); if (preg_match('/^\//',$picto[$numero])) print img_picto($alt,$picto[$numero],'width="16px"',1);
else print img_object($alt,$picto[$numero]); else print img_object($alt,$picto[$numero],'width="16px"');
} }
else else
{ {
print img_object($alt,$picto[$numero]); print img_object($alt,$picto[$numero],'width="16px"');
} }
print ' '.$modules[$numero]->getName(); print ' '.$modules[$numero]->getName();
print "</td>"; print "</td>";