mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-16 09:34:39 +00:00
(legacy) uninitialized var in guiconfig.inc
This commit is contained in:
parent
b04ada5d46
commit
e3b8a3e425
@ -288,7 +288,7 @@ function pprint_address($adr) {
|
||||
} else if (isset($adr['network'])) {
|
||||
$padr = $specialnets[$adr['network']];
|
||||
} else {
|
||||
$padr = $adr['address'];
|
||||
$padr = isset($adr['address']) ? $adr['address'] : null;
|
||||
}
|
||||
|
||||
if (isset($adr['not']))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user