]> git.sur5r.net Git - contagged/commitdiff
fix broken evolutionPerson fields (country not provided, but anniversary and categori...
authorChristian Weiske <cweiske@cweiske.de>
Tue, 1 Oct 2013 05:30:33 +0000 (07:30 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Tue, 1 Oct 2013 05:38:50 +0000 (07:38 +0200)
inc/fields.php

index 23e933b4305beab44a45dfe56d791671e9b9332c..9d097436a2a88aef28fe4c0246fe922761ef7766 100644 (file)
@@ -75,15 +75,16 @@ if (array_search('OXUserObject', $conf['oclasses']) !== false) {
  * and object classes are added
  */
 if (array_search('evolutionPerson', $conf['oclasses']) !== false) {
+    $FIELDS['anniversary'] = 'anniversary';
     $FIELDS['department']  = 'ou';
     $FIELDS['state']       = 'st';
-    $FIELDS['country']     = 'c';
     $FIELDS['phone']       = 'primaryPhone';
     $FIELDS['switchboard'] = 'companyPhone';
     $FIELDS['note']        = 'note';
     $FIELDS['manager']     = 'seeAlso';
     $FIELDS['birthday']    = 'birthDate';
     $FIELDS['spouse']      = 'spouseName';
+    $FIELDS['_marker']     = 'categories'; // aka. tags
 }
 
 /**