View | Details | Raw Unified | Return to bug 48717
Collapse All | Expand All

(-)a/management/univention-directory-manager-modules/modules/univention/admin/handlers/__init__.py (-1 / +2 lines)
 Lines 640-646   class simpleLdap(object): Link Here 
640
		for c in response.get('ctrls', []):
640
		for c in response.get('ctrls', []):
641
			if c.controlType == PostReadControl.controlType:
641
			if c.controlType == PostReadControl.controlType:
642
				self.oldattr.update(c.entry)
642
				self.oldattr.update(c.entry)
643
		self._write_admin_diary_modify()
644
		return dn
643
		return dn
645
644
646
	def _write_admin_diary_modify(self):
645
	def _write_admin_diary_modify(self):
 Lines 1282-1287   class simpleLdap(object): Link Here 
1282
		# FIXME: timeout without exception if objectClass of Object is not exsistant !!
1281
		# FIXME: timeout without exception if objectClass of Object is not exsistant !!
1283
		univention.debug.debug(univention.debug.ADMIN, 99, 'Modify dn=%r;\nmodlist=%r;\noldattr=%r;' % (self.dn, ml, self.oldattr))
1282
		univention.debug.debug(univention.debug.ADMIN, 99, 'Modify dn=%r;\nmodlist=%r;\noldattr=%r;' % (self.dn, ml, self.oldattr))
1284
		self.lo.modify(self.dn, ml, ignore_license=ignore_license, serverctrls=serverctrls, response=response)
1283
		self.lo.modify(self.dn, ml, ignore_license=ignore_license, serverctrls=serverctrls, response=response)
1284
		if ml:
1285
			self._write_admin_diary_modify()
1285
1286
1286
		self._ldap_post_modify()
1287
		self._ldap_post_modify()
1287
		self.call_udm_property_hook('hook_ldap_post_modify', self)
1288
		self.call_udm_property_hook('hook_ldap_post_modify', self)

Return to bug 48717