mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
Addressbook: Avoid error if n_fn is not in popup template
This commit is contained in:
parent
fe68cdb1b6
commit
a93146c1cb
@ -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 "";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user