[$ # Check what the details pane should be displaying, and show a frameset accordingly my $display = uc(param('display')); if ($display eq 'MORECHANNELS') { to_browser(qq{
}); } elsif ($display eq 'SETTINGS') { to_browser(qq{
}); } else { # Headlines, web page, and XML all go in the same format my $detail; if ($display eq 'WEB') { $detail = get_setting( "user_af_currentfeed_htmlurl" ); } elsif ($display eq 'XML') { $detail = get_setting( "user_af_currentfeed_xmlurl" ); } else { $detail = 'headlines.html'; } to_browser(qq{
}); } $OUT = send_to_browser; $]