Auth.php.diff

Sean o -, 03/28/2009 02:23 am

Download (478 Bytes)

 
trunk/modules/auth/libraries/Auth.php (working copy)
224 224
		foreach ($this->config['salt_pattern'] as $i => $offset)
225 225
		{
226 226
			// Find salt characters, take a good long look...
227
			$salt .= substr($password, $offset + $i, 1);
227
			$salt .= $password[$offset + $i];
228 228
		}
229 229

  
230 230
		return $salt;