diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-08-23 14:58:45 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-08-23 22:03:35 +0200 |
commit | 394617e0b6911d889f361f0747cd8f4f7ebe7a39 (patch) | |
tree | 472f9bf01e7259f9ed01acbf2c8dde6178bb5aef /apps | |
parent | 069d16fdd441bcc4b1ba1ccd8f18f65cc4515ea4 (diff) | |
download | nextcloud-server-394617e0b6911d889f361f0747cd8f4f7ebe7a39.tar.gz nextcloud-server-394617e0b6911d889f361f0747cd8f4f7ebe7a39.zip |
Missing IM variable assignments.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/ajax/loadcard.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/contacts/ajax/loadcard.php b/apps/contacts/ajax/loadcard.php index 75fe33ada6f..7d73641818b 100644 --- a/apps/contacts/ajax/loadcard.php +++ b/apps/contacts/ajax/loadcard.php @@ -35,6 +35,12 @@ $maxUploadFilesize = min($maxUploadFilesize, $freeSpace); $adr_types = OC_Contacts_App::getTypesOfProperty('ADR'); $phone_types = OC_Contacts_App::getTypesOfProperty('TEL'); $email_types = OC_Contacts_App::getTypesOfProperty('EMAIL'); +$impp_types = OC_Contacts_App::getTypesOfProperty('IMPP'); +$ims = OC_Contacts_App::getIMOptions(); +$im_protocols = array(); +foreach($ims as $name => $values) { + $im_protocols[$name] = $values['displayname']; +} $tmpl = new OCP\Template('contacts', 'part.contact'); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); @@ -42,6 +48,8 @@ $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesi $tmpl->assign('adr_types', $adr_types); $tmpl->assign('phone_types', $phone_types); $tmpl->assign('email_types', $email_types); +$tmpl->assign('impp_types', $impp_types, false); +$tmpl->assign('im_protocols', $im_protocols, false); $tmpl->assign('requesttoken', $requesttoken); $tmpl->assign('id', ''); $page = $tmpl->fetchPage(); |