Revision 299364a4
Added by sbeaver about 10 years ago
usr/local/www/services_dnsmasq_edit.php | ||
---|---|---|
264 | 264 |
'aliashost' . $counter, |
265 | 265 |
null, |
266 | 266 |
'text', |
267 |
htmlspecialchars($item['host'])
|
|
267 |
$item['host']
|
|
268 | 268 |
))->setHelp($counter == $last ? 'Host name':null); |
269 | 269 |
|
270 | 270 |
$group->add(new Form_Input( |
271 | 271 |
'aliasdomain' . $counter, |
272 | 272 |
null, |
273 | 273 |
'text', |
274 |
htmlspecialchars($item['domain'])
|
|
274 |
$item['domain']
|
|
275 | 275 |
))->setHelp($counter == $last ? 'Value':null); |
276 | 276 |
|
277 | 277 |
$group->add(new Form_Input( |
278 | 278 |
'aliasdescription' . $counter, |
279 | 279 |
null, |
280 | 280 |
'text', |
281 |
htmlspecialchars($item['description'])
|
|
281 |
$item['description']
|
|
282 | 282 |
))->setHelp($counter == $last ? 'Description':null); |
283 | 283 |
|
284 | 284 |
$btn = new Form_Button( |
Also available in: Unified diff
Remove unneeded htmlspecialcharacters