mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 01:28:47 +02:00
Small fix: using an unassigned variable.
SVN:trunk[1039]
This commit is contained in:
@@ -118,7 +118,7 @@ function SelectService($oP, $oUserOrg)
|
||||
{
|
||||
$id = $oService->GetKey();
|
||||
$sChecked = "";
|
||||
if ($id == $aParameters['service_id'])
|
||||
if (isset($aParameters['service_id']) && ($id == $aParameters['service_id']))
|
||||
{
|
||||
$sChecked = "checked";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user