From:
http://perl.apache.org/docs/2.0/user/porting/compat.html#C_Apache__Util__escape_uri___:
"Apache::Util::escape_uri()
Apache::Util::escape_uri() has been replaced with
Apache2::Util::escape_path()
<http://perl.apache.org/docs/2.0/api/Apache2/Util.html#C_escape_path_>
and requires a pool object as a second argument. For example:
$escaped_path = Apache2::Util::escape_path($path, $r->pool);"
David
Is there an "escape_uri" function in Apache2 somewhere?
I only see unescape_uri in Apache2::Util
// Jonathan Vanasco