mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 19:01:04 +01:00
Addressbook: Avoid error if n_fn is not in popup template
This commit is contained in:
parent
fe68cdb1b6
commit
a93146c1cb
@ -1325,9 +1325,16 @@ class AddressbookApp extends EgwApp
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
getWindowTitle()
|
getWindowTitle()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
return this.et2.getValueById('n_fn');
|
return this.et2.getValueById('n_fn');
|
||||||
}
|
}
|
||||||
|
catch(e)
|
||||||
|
{
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable/Disable geolocation action items in contextmenu base on address availabilty
|
* Enable/Disable geolocation action items in contextmenu base on address availabilty
|
||||||
|
Loading…
Reference in New Issue
Block a user