Addressbook: Avoid error if n_fn is not in popup template

This commit is contained in:
nathan 2023-11-06 15:12:43 -07:00
parent fe68cdb1b6
commit a93146c1cb
1 changed files with 8 additions and 1 deletions

View File

@ -1326,7 +1326,14 @@ class AddressbookApp extends EgwApp
*/
getWindowTitle()
{
return this.et2.getValueById('n_fn');
try
{
return this.et2.getValueById('n_fn');
}
catch(e)
{
return "";
}
}
/**