mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-06 15:22:26 -04:00
parent
5462784507
commit
01a80c2da8
2 changed files with 4 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ class SelfServiceController extends ActionController
|
|||
// PluginsUrl => framework_plugins_url
|
||||
];
|
||||
$username = $settings->get('self-service/icinga_service_user');
|
||||
if (strlen($username)) {
|
||||
if ($username !== null && strlen($username) > 0) {
|
||||
$params['icinga_service_user'] = $username;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,9 @@ v1.10.2 (unreleased)
|
|||
* FEATURE: more details shown in error messages related to invalid characters (#2646)
|
||||
* FIX: snapshots for Baskets containing Baskets failed since v1.10 (#2644)
|
||||
|
||||
### REST API
|
||||
* FIX: Self Service API returned invalid JSON on PHP 8.1 (#2614)
|
||||
|
||||
### Internals
|
||||
* FIX: issue with empty activity log, deprecate outdated method (#2630)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue