Bug 238874 part 2: removing last vestiges of %::COOKIE from colchange.cgi (in…

Bug 238874 part 2: removing last vestiges of %::COOKIE from colchange.cgi (in favor of $cgi->cookie) Patch by kiko, r=vlad, a=justdave
parent aa463182
......@@ -126,7 +126,7 @@ if (defined $cgi->cookie('COLUMNLIST')) {
}
$vars->{'collist'} = \@collist;
$vars->{'splitheader'} = $::COOKIE{'SPLITHEADER'} ? 1 : 0;
$vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0;
$vars->{'buffer'} = $::buffer;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment