in reply to [SOLVED] Catalyst $c->req->param() issue?

use "auto" in root.pm for managing authentication. It's in the catalyst tutorial here. As stated it is a global mechanism for making sure users don't make it into the application without authentication. It runs right after begin but before any other action. You can probably write something under auto that checks to make sure the user has stated that they are of age.

-Actualize

Replies are listed 'Best First'.
Re^2: Catalyst $c->req->param() issue?
by stonecolddevin (Parson) on Aug 05, 2008 at 05:05 UTC

    Thanks actualize. This is reused code from one of the earlier tutorials and I haven't checked in on the newer versions.

    Much apprecieated, ++!

    meh.