
theory at bricolage
Apr 30, 2008, 5:54 PM
Post #1 of 1
(175 views)
Permalink
|
|
[8225] Caught another compatibility bug.
|
|
Revision: 8225 Author: theory Date: 2008-04-30 17:54:12 -0700 (Wed, 30 Apr 2008) ViewCVS: http://viewsvn.bricolage.cc/?rev=8225&view=rev Log Message: ----------- Caught another compatibility bug. Too bad it's too late for 1.11.0. Modified Paths: -------------- bricolage/trunk/lib/Bric/App/Authz.pm Modified: bricolage/trunk/lib/Bric/App/Authz.pm =================================================================== --- bricolage/trunk/lib/Bric/App/Authz.pm 2008-05-01 00:24:29 UTC (rev 8224) +++ bricolage/trunk/lib/Bric/App/Authz.pm 2008-05-01 00:54:12 UTC (rev 8225) @@ -176,7 +176,7 @@ my $id = $obj->get_id; $id = '' unless defined $id; my $key = "_AUTHZ_:$ref:$id"; - my $r = Apache::Request->instance(Apache->request); + my $r = Bric::Util::ApacheReq->instance; $r->pnotes( $key, undef ); return $obj; }
|