Fix PHP 7.4 warnings
commit5ca1e271f9023b41b613313745bc700dc15d802f
authorEli Schwartz <eschwartz@archlinux.org>
Wed, 12 Feb 2020 20:16:37 +0000 (12 15:16 -0500)
committerLukas Fleischer <lfleischer@archlinux.org>
Thu, 13 Feb 2020 08:11:28 +0000 (13 09:11 +0100)
tree4974b28d4e5337b125ea76104cd55d16fc38fe15
parent65c98d12161906ab680fc2c9572f7c78b16efd82
Fix PHP 7.4 warnings

If a db query returned NULL instead of an array, then accessing $row[0]
now throws a warning. The undocumented behavior of evaluating to NULL
is maintained, and we want to return NULL anyway, so add a check for the
value and fall back on the default function return type.

Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
web/lib/aur.inc.php
web/lib/pkgfuncs.inc.php