Commit e3b8a3e4 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) uninitialized var in guiconfig.inc

parent b04ada5d
......@@ -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']))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment