Skip to content

Commit

Permalink
Fix: Size of picto
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 22, 2011
1 parent 65b543c commit e2fcf23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htdocs/admin/system/modules.php
Expand Up @@ -97,12 +97,12 @@
$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 "</td>";
Expand Down

0 comments on commit e2fcf23

Please sign in to comment.