From 6d5c536f3d91e90ba80614c69b61f2deebc8f103 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Fri, 14 Sep 2012 15:48:32 +0000 Subject: [PATCH] layout change --- lam/lib/modules.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lam/lib/modules.inc b/lam/lib/modules.inc index adb3b942..68f3da08 100644 --- a/lam/lib/modules.inc +++ b/lam/lib/modules.inc @@ -1014,12 +1014,11 @@ class accountContainer { foreach ($this->module as $name => $module) { if (($module instanceof passwordService) && $module->managesPasswordAttributes()) { $printContainer = true; - $moduleContainer->addElement(new htmlInputCheckbox('password_cb_' . $name, true)); $buttonImage = $module->getIcon(); if ($buttonImage != null) { $moduleContainer->addElement(new htmlImage('../../graphics/' . $buttonImage, null, null, getModuleAlias($name, $this->type))); } - $moduleContainer->addElement(new htmlOutputText(getModuleAlias($name, $this->type))); + $moduleContainer->addElement(new htmlTableExtendedInputCheckbox('password_cb_' . $name, true, getModuleAlias($name, $this->type), null, false)); $moduleContainer->addElement(new htmlSpacer('10px', null)); } }