[20965] Fix typos

Sigurd Nes <[email protected]> Thu, 14 Jan 2010 17:05:43 +0000
Newsgroups gmane.comp.web.phpgroupware.cvs
Message-ID <[email protected]>
Revision: 20965
          http://svn.sv.gnu.org/viewvc/?view=rev&root=phpgroupware&revision=20965
Author:   sigurdne
Date:     2010-01-14 17:05:41 +0000 (Thu, 14 Jan 2010)
Log Message:
-----------
Fix typos

Modified Paths:
--------------
    people/sigurdne/modules/phpgwapi/trunk/inc/auth/class.auth_ldap.inc.php

Modified: people/sigurdne/modules/phpgwapi/trunk/inc/auth/class.auth_ldap.inc.php
===================================================================
--- people/sigurdne/modules/phpgwapi/trunk/inc/auth/class.auth_ldap.inc.php	2010-01-13 22:39:37 UTC (rev 20964)
+++ people/sigurdne/modules/phpgwapi/trunk/inc/auth/class.auth_ldap.inc.php	2010-01-14 17:05:41 UTC (rev 20965)
@@ -137,7 +137,7 @@
 			}
 
 			// Generate the search DN
-			$search = $this->_generate_dn($this->userid_search_dn, '', $account_id);
+			$search = $this->_generate_dn($this->userid_search_dn, '', $_account_id);
 	
 			$ds = $GLOBALS['phpgw']->common->ldapConnect();
 			$sri = ldap_search($ds, $GLOBALS['phpgw_info']['server']['ldap_context'], $search, array('dn') );
@@ -150,7 +150,7 @@
 
 			$dn = $allValues[0]['dn'];
 			
-			$entry['userpassword'] = $this->generate_hash($new_password); 
+			$entry['userpassword'] = $this->create_hash($new_passwd); 
 			if ( isset($allValues[0]['shadowlastchange']) )
 			{
 				$entry['shadowLastChange'] = date('U') / phpgwapi_datetime::SECONDS_IN_DAY;