Changeset 5714
- Timestamp:
- 03/13/12 18:18:44 (11 years ago)
- Location:
- sandbox/webservice/api/json-rpc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sandbox/webservice/api/json-rpc/Catalog.php
r5712 r5714 88 88 // Global Catalog 89 89 elseif($params['contactType'] == 2){ 90 $photo = $this->getUserLdapPhoto( $params['contactID']);90 $photo = $this->getUserLdapPhoto(urldecode($params['contactID'])); 91 91 $contact[] = array( 92 92 'contactID' => $params['contactID'], … … 117 117 $dn = ldap_get_dn($ds, $entry); 118 118 return array( 119 "contactID" => $dn,119 "contactID" => urlencode($dn), 120 120 "contactFirstName" => $givenName[0], 121 121 "contactLastName" => $sn[0], -
sandbox/webservice/api/json-rpc/Expresso.php
r5707 r5714 12 12 function __construct($id){ 13 13 $this->expressoVersion = substr($GLOBALS['phpgw_info']['server']['versions']['phpgwapi'],0,3); 14 $this->result = null;14 $this->result = array(); 15 15 $this->error = null; 16 16 $this-> id = $id;
Note: See TracChangeset
for help on using the changeset viewer.