On Wed, 13 Dec 2000, Geoffrey Young wrote:
 
> BTW, it's always good (at least I've found) to call
> my $prev_uri = $r->prev ? $r->prev->uri : $r->uri;

or with one less method call :)
my $prev_uri = ($r->prev || $r)->uri; 

Reply via email to