fix privat address country does not preselect nation, should be analogous to business

This commit is contained in:
Hadi Nategh 2013-08-16 14:49:08 +00:00
parent 95e18fd5a7
commit 2a791a2f8a

View File

@ -1729,6 +1729,10 @@ window.egw_LAB.wait(function() {
$GLOBALS['egw_info']['user']['preferences']['common']['country']; $GLOBALS['egw_info']['user']['preferences']['common']['country'];
$content['adr_one_countryname'] = $content['adr_one_countryname'] =
$GLOBALS['egw']->country->get_full_name($GLOBALS['egw_info']['user']['preferences']['common']['country']); $GLOBALS['egw']->country->get_full_name($GLOBALS['egw_info']['user']['preferences']['common']['country']);
$content['adr_two_countrycode'] =
$GLOBALS['egw_info']['user']['preferences']['common']['country'];
$content['adr_two_countryname'] =
$GLOBALS['egw']->country->get_full_name($GLOBALS['egw_info']['user']['preferences']['common']['country']);
} }
if ($this->prefs['fileas_default']) $content['fileas_type'] = $this->prefs['fileas_default']; if ($this->prefs['fileas_default']) $content['fileas_type'] = $this->prefs['fileas_default'];
} }