Modified:
trunk/Lux/Auth/Adapter/Psql.php
Log:
Fix: in _processLogin(), the key from $info is 'handle', and not the handle
column name.
Modified: trunk/Lux/Auth/Adapter/Psql.php
==============================================================================
--- trunk/Lux/Auth/Adapter/Psql.php (original)
+++ trunk/Lux/Auth/Adapter/Psql.php Thu Sep 25 23:01:18 2008
@@ -174,7 +174,7 @@
);
if ($persist) {
- $handle = $info[$this->_config['handle_col']];
+ $handle = $info['handle'];
$this->_newCookie($handle);
}
}