3 Oct
2015
3 Oct
'15
9:16 a.m.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org> --- web/html/packages.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/html/packages.php b/web/html/packages.php index 38a2e29..1b89278 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -21,7 +21,11 @@ if (!isset($pkgid) || !isset($pkgname)) { $details = array(); if (isset($pkgid)) { $details = pkg_get_details($pkgid); - $pkgname = $details['Name']; + if (isset($details['Name'])) { + $pkgname = $details['Name']; + } else { + $pkgname = null; + } } else { unset($pkgname); } -- 2.6.0