See ChangeLog

Monotone-Parent: e3483e71ca758cace03c82b0820f4801a330088c
Monotone-Revision: a218827fb530f29cfabc1b1814e47476cbf2cf65

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-05-10T18:07:05
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2011-05-10 18:07:05 +00:00
parent 5fa31a0fbc
commit 6fe0e56b18
2 changed files with 9 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-05-10 Ludovic Marcotte <lmarcotte@inverse.ca>
* NSDictionary+Utilities.m (userRecordAsLDIFEntry):
Fix to avoid a crash when backing up resources' LDIF entries
2011-05-06 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxPreferences.js
+4 -2
View File
@@ -1,6 +1,6 @@
/* NSDictionary+Utilities.m - this file is part of SOGo
*
* Copyright (C) 2007 Inverse inc.
* Copyright (C) 2007-2011 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
@@ -172,7 +172,9 @@
|| [currentKey hasPrefix: @"objectClass"]
|| [currentKey hasPrefix: @"c_"]
|| [currentKey isEqualToString: @"dn"]
|| [currentKey isEqualToString: @"isGroup"]))
|| [currentKey isEqualToString: @"isGroup"]
|| [currentKey isEqualToString: @"isResource"]
|| [currentKey isEqualToString: @"numberOfSimultaneousBookings"]))
[self _appendLDIFKey: currentKey toString: ldifString];
}