projects
/
catagits/Reaction.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f2dffa2
)
shallow copying req->params
wreis [Mon, 30 Mar 2009 19:24:46 +0000 (19:24 +0000)]
lib/Reaction/UI/Window.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Reaction/UI/Window.pm
b/lib/Reaction/UI/Window.pm
index
5eda757
..
610a935
100644
(file)
--- a/
lib/Reaction/UI/Window.pm
+++ b/
lib/Reaction/UI/Window.pm
@@
-50,7
+50,7
@@
sub flush_events {
foreach my $type (qw/query body/) {
my $meth = "${type}_parameters";
- my $param_hash = $ctx->req->$meth;
+ my $param_hash = { %{$ctx->req->$meth} }; # yeah, FocusStack deletes it
$self->focus_stack->apply_events($param_hash)
if keys %$param_hash;
}