#1148268 phpldapadmin: Passing null to the `function` parameter prevents the web interface from rendering

#1148268#5
Date:
2026-09-18 15:31:29 UTC
From:
To:
Dear Maintainer,

Fresh installation of Debian Trixie with phpldapadmin.

The main frame body is not rendered. The following error is logged:

PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /usr/share/phpldapadmin/lib/HTMLTree.php on line 101

Workaround: Change line 101 in /usr/share/phpldapadmin/lib/HTMLTree.php from:

htmlspecialchars($server->getContainer($base->getDN()))

to:

htmlspecialchars($server->getContainer($base->getDN()) ?? '')

After this change, the main frame renders correctly.