Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [brewt] hidden_query

Quote Reply
Re: [brewt] hidden_query In reply to
Did you mean sub_hidden? I don't find a sub_request in GForum.pm.
Here's what is probably the relevant code.

I want the variable called "fp" to be carried in the url along with the session id. fp should default to 6.
How do you insert that into this code?

Code:
my $needed = shift || "query";
my (@return, $return);
if ($needed eq 'query') {
for my $key (keys %HIDDEN) {
if (ref $HIDDEN{$key} eq 'ARRAY') {
for (@{$HIDDEN{$key}}) {
push @return, $IN->escape($key) . "=" . $IN->escape($_);
}
}
else {
push @return, $IN->escape($key) . "=" . $IN->escape($HIDDEN{$key});
}
}
$return = join "&", @return;
Subject Author Views Date
Thread hidden_query BLOOD 7768 Jun 8, 2003, 7:36 AM
Thread Re: [BLOOD] hidden_query
Alex 7593 Jun 8, 2003, 11:19 AM
Thread Re: [Alex] hidden_query
tora 7364 Oct 14, 2007, 2:43 PM
Thread Re: [tora] hidden_query
brewt 7356 Oct 15, 2007, 4:58 PM
Thread Re: [brewt] hidden_query
tora 7345 Oct 16, 2007, 3:08 AM
Thread Re: [tora] hidden_query
brewt 7354 Oct 16, 2007, 2:24 PM
Thread Re: [brewt] hidden_query
tora 7349 Oct 16, 2007, 2:36 PM
Post Re: [tora] hidden_query
brewt 7339 Oct 17, 2007, 5:25 PM
Post Re: [brewt] hidden_query
tora 7350 Oct 16, 2007, 2:41 PM
Thread Re: [brewt] hidden_query
tora 7319 Oct 17, 2007, 1:39 PM
Thread Re: [tora] hidden_query
brewt 7328 Oct 17, 2007, 5:27 PM
Post Re: [brewt] hidden_query
tora 7319 Oct 18, 2007, 9:44 AM