1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

Fix: display_name property doesn't work for hosts.

Fixes 
This commit is contained in:
Gunnar Beutner 2013-12-04 12:07:57 +01:00
parent 6625346922
commit 7482548966

@ -53,7 +53,7 @@ Dictionary::Ptr HostDbObject::GetConfigFields(void) const
}
fields->Set("alias", attrs->Get("alias"));
fields->Set("display_name", attrs->Get("display_name"));
fields->Set("display_name", host->GetDisplayName());
fields->Set("address", attrs->Get("address"));
fields->Set("address6", attrs->Get("address6"));