Hi,
As discussed at
http://marc.info/?t=120291200200005&r=1&w=2
and pointed out by Perrin:
http://marc.info/?l=apache-modperl&m=120301930604550&w=2
Apache2::compat doesn't provide the request method in
the Apache namespace (it's currently defined in the
Apache2::compat package). Thus, Apache->request() isn't
available. The patch I supplied:
http://marc.info/?l=apache-modperl&m=120302251910079&w=2
moved the request method to the Apache namespace.
However, this alone is insufficient, as Apache2::compat
makes reference to Apache2::compat::request() in a
couple of places. For reasons of compatibility, would
it be better to just supply an Apache::request()
that calls Apache2::compat::request()? This is done
in the attached patch.
--
best regards,
Randy
Index: compat.pm
===================================================================
--- compat.pm (revision 628371)
+++ compat.pm (working copy)
@@ -321,6 +321,10 @@
package Apache;
+sub request {
+ return Apache2::compat::request(@_);
+}
+
sub unescape_url_info {
my ($class, $string) = @_;
Apache2::URI::unescape_url($string);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]