mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Removed htmlspecialchars when loading leases from config
(cherry picked from commit 2322e9f3cb)
This commit is contained in:
parent
afe8afac75
commit
b4ff414aef
@ -325,8 +325,8 @@ foreach ($config['interfaces'] as $ifname => $ifarr) {
|
||||
$slease['if'] = $ifname;
|
||||
$slease['start'] = "";
|
||||
$slease['end'] = "";
|
||||
$slease['hostname'] = htmlentities($static['hostname']);
|
||||
$slease['descr'] = htmlentities($static['descr']);
|
||||
$slease['hostname'] = $static['hostname'];
|
||||
$slease['descr'] = $static['descr'];
|
||||
$slease['act'] = $static_string;
|
||||
$slease['online'] = in_array(strtolower($slease['mac']), $arpdata_mac) ? $online_string : $offline_string;
|
||||
$slease['staticmap_array_index'] = $idx;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user