[Zope-CMF] Unauthorized problem
Dieter Maurer
dieter@handshake.de
Sun, 26 Aug 2001 00:35:14 +0200 (CEST)
Tom Bech writes:
> ....
> Upon returning to the calling DTML method, however, I get an exception
> stating "You are not authorized to access urlobj.title" (But if I try
> calling "urlobj.getId()", for example, I get no errors).
"title" is a primitive object (a string) rather than
a method. It, therefore, cannot be protected by a role.
You can set "__allow_access_to_unprotectd_subobjects__=1"
to allow access to it.
Dieter