Merge pull request #1321 from mtmail/interpolating-0-housenumbers

Support housenumber=0 in interpolations
This commit is contained in:
Sarah Hoffmann
2019-04-19 18:29:43 +02:00
committed by GitHub
2 changed files with 21 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ class AddressDetails
$mLangPref = 'ARRAY['.join(',', array_map('getDBQuoted', $mLangPref)).']';
}
if (!$sHousenumber) {
if (!isset($sHousenumber)) {
$sHousenumber = -1;
}