From fca045fea10526268ebb8dcf8013e7e82b275fa4 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 9 Jun 2006 16:05:44 +0000 Subject: [PATCH] fix bad labels in Security tab --- lib/WebGUI/Asset/Wobject/InOutBoard.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/WebGUI/Asset/Wobject/InOutBoard.pm b/lib/WebGUI/Asset/Wobject/InOutBoard.pm index 4404012c1..aeb369aa6 100644 --- a/lib/WebGUI/Asset/Wobject/InOutBoard.pm +++ b/lib/WebGUI/Asset/Wobject/InOutBoard.pm @@ -133,13 +133,13 @@ sub getEditForm { $tabform->getTab("security")->group( -name=>"reportViewerGroup", -value=>[$self->getValue("reportViewerGroup")], - -label=>$i18n->get(3) + -label=>$i18n->get(3), -hoverHelp=>$i18n->get("3 description"), ); $tabform->getTab("security")->group( -name=>"inOutGroup", -value=>[$self->getValue("inOutGroup")], - -label=>$i18n->get('inOutGroup') + -label=>$i18n->get('inOutGroup'), -hoverHelp=>$i18n->get('inOutGroup description'), ); return $tabform;