summaryrefslogtreecommitdiff
path: root/lib/PAUSE/OpenID/Controller/Root.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PAUSE/OpenID/Controller/Root.pm')
-rw-r--r--lib/PAUSE/OpenID/Controller/Root.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/PAUSE/OpenID/Controller/Root.pm b/lib/PAUSE/OpenID/Controller/Root.pm
index c37b2c2..ba6db5d 100644
--- a/lib/PAUSE/OpenID/Controller/Root.pm
+++ b/lib/PAUSE/OpenID/Controller/Root.pm
@@ -32,6 +32,11 @@ sub index :Path :Args(0) {
$c->stash->{xml} =<<XML;
<document/>
XML
+
+ # Pass through parameters (unchecked for now)
+ foreach my $key ( keys %{$c->req->params} ) {
+ $c->stash->{$key} = $c->req->param($key);
+ }
# Hello World
$c->forward('PAUSE::OpenID::View::XSLT');