Skip to content
Snippets Groups Projects
Commit a1111524 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Size of picto

parent 0b74a452
No related branches found
No related tags found
No related merge requests found
......@@ -19,8 +19,8 @@
*/
/**
* \file htdocs/admin/system/dolibarr.php
* \brief Fichier page info systemes Dolibarr
* \file htdocs/admin/system/modules.php
* \brief File to list all Dolibarr modules
* \version $Id$
*/
......@@ -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],'',1);
else print img_object($alt,$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"');
}
else
{
print img_object($alt,$picto[$numero]);
print img_object($alt,$picto[$numero],'width="16px"');
}
print ' '.$modules[$numero]->getName();
print "</td>";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment