commit 718390768ad448e4d025849570bcdf97151351dc
Author: Dobrica Pavlinusic <dpavlin@rot13.org>
Date:   Mon Mar 16 07:14:12 2009 +0100

    BUG FIX: update and replace must be by default 0, because otherwise
    we can't just replicate without update

diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm
index 3f965a7..84ad0f6 100644
--- a/C4/Auth_with_ldap.pm
+++ b/C4/Auth_with_ldap.pm
@@ -62,8 +62,8 @@ $debug and print STDERR "Got ", scalar(@mapkeys), " ldap mapkeys (populated): ",
 
 my %config = (
 	anonymous => ($ldapname and $ldappassword) ? 0 : 1,
-	replicate => $ldap->{replicate} || 1,		#    add from LDAP to Koha database for new user
-	   update => $ldap->{update}    || 1,		# update from LDAP to Koha database for existing user
+	replicate => $ldap->{replicate} || 0,		#    add from LDAP to Koha database for new user
+	   update => $ldap->{update}    || 0,		# update from LDAP to Koha database for existing user
 );
 
 sub description ($) {
