diff --git a/portal/index.php b/portal/index.php index 764640757..925c48dca 100644 --- a/portal/index.php +++ b/portal/index.php @@ -101,7 +101,7 @@ function SelectServiceCategory($oP, $oUserOrg) $sChecked = "checked"; } $oP->add("

"); - $oP->add("".$oService->GetAsHTML('description').""); + $oP->add($oService->GetAsHTML('description').""); } $oP->add("\n"); @@ -157,7 +157,7 @@ function SelectServiceSubCategory($oP, $oUserOrg) $oP->add(""); $oP->add("

"); - $oP->add("

".$oSubService->GetAsHTML('description')."

"); + $oP->add($oSubService->GetAsHTML('description')); $oP->add(""); $oP->add(""); } @@ -471,10 +471,8 @@ function ListClosedTickets(WebPage $oP) $oSearch->AddCondition('caller_id', $iUser); } $oSet1 = new CMDBObjectSet($oSearch); - $oP->add("

\n"); $oP->add("

".Dict::S('Portal:ClosedRequests')."

\n"); $oP->DisplaySet($oSet1, $aZList, Dict::S('Portal:NoClosedRequest')); - $oP->add("

\n"); }