- $r->connection->auth_type($auth_type);you can see my rather long (and one sided) threads on this list today for more details, but $r->auth_type is not the same as $r->connection->auth_type.
- $r->connection->user($auth_user);
+ $r->auth_type($auth_type);
+ $r->user($auth_user);
if you're looking to do without Apache::compat, then you should use my patch and $r->ap_auth_type instead. if using Apache::compat, then you can keep $r->connection->auth_type.
I'd recommend you mail the maintainers of these modules directly to gain 2.0 support. in particular $r->user is already in 1.0 as an alias for $r->connection->user, and the constants are available there as well. so, according to your changes, with a few simple changes both these modules can be made to work under either Apache::compat or 1.0 without any modifications. cool.
--Geoff
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
