Geoffrey Young wrote:
bah... I've been browsing through the code and, I'm not entirely certain as to what Apache->request->auth_type is and how it's different than Apache::RequestRec::auth_type(), which seems to be pulling per-dir config information. in any case, it looks like compat.pm may need some more, but I'm not sure.+package Apache::Connection;
+
+# auth_type and user records don't exist in 2.0 conn_rec struct
+# 'PerlOptions +GlobalRequest' is required
+sub auth_type { Apache->request->auth_type }
+sub user { Apache->request->user }
+
1;
__END__
I think this may need a bit more thought (or at least more explanation).
in 1.0 there is both $r->auth_type and $c->auth_type, and they have different meanings.
I'll look into this tomorrow a bit and try to sort it out if Stas doesn't get to it first :)
--Geoff
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]