소스 검색

Fix dhcp command

Espinoza Guillermo 6 년 전
부모
커밋
18acb1dda2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/CablemodemBundle/Command/DHCPHostCRUDCommand.php

+ 1 - 1
src/CablemodemBundle/Command/DHCPHostCRUDCommand.php

@@ -151,7 +151,7 @@ EOT
             'fixed_address' => $fixedIP ?: null,
             'fixedIP' => $fixedIP ? true : false,
         ];
-        if ($type == 'mta' || $type == 'cpe') {
+        if (isset($hostId) && ($type == 'mta' || $type == 'cpe')) {
             unset($data['mac']);
             $data['host'] = $hostId;