From b7c18198f9054a15fa638688c6be6d2019156e67 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 28 Oct 2010 18:11:16 +0000 Subject: [PATCH] fixed images --- lam/templates/profedit/profilemain.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/templates/profedit/profilemain.php b/lam/templates/profedit/profilemain.php index 6e8be348..ec49ea93 100644 --- a/lam/templates/profedit/profilemain.php +++ b/lam/templates/profedit/profilemain.php @@ -144,7 +144,7 @@ for ($i = 0; $i < sizeof($profileClasses); $i++) { if ($i > 0) { $existingContainer->addElement(new htmlSpacer(null, '10px'), true); } - $existingContainer->addElement(new htmlImage('../../graphics/' . $profileClasses[$i]['scope'])); + $existingContainer->addElement(new htmlImage('../../graphics/' . $profileClasses[$i]['scope'] . '.png')); $existingContainer->addElement(new htmlSpacer('3px', null)); $existingContainer->addElement(new htmlOutputText($profileClasses[$i]['title'])); $existingContainer->addElement(new htmlSpacer('3px', null));