Files
racalmas/website/agenda/comments.cgi
Milan 7ff41cecd2 remove CGI where possible
use mod_perl request with fallback to CGI::Simple where possible.
2018-09-23 15:47:03 +02:00

40 lines
711 B
Perl
Executable File

#! /usr/bin/perl -w
use warnings "all";
use strict;
use Data::Dumper;
use params();
use config();
use comments();
use db();
use markup();
use time();
use cache();
use log();
my $r = shift;
( my $cgi, my $params, my $error ) = params::get($r);
binmode STDOUT, ":encoding(UTF-8)";
if ( $0 =~ /comments.*?\.cgi$/ ) {
my $config = config::get('config/config.cgi');
my $debug = $config->{system}->{debug};
my $request = {
url => $ENV{QUERY_STRING},
params => {
original => $params,
checked => comments::check_params( $config, $params ),
},
};
my $output = '';
comments::get_cached_or_render( $output, $config, $request, 'filter_locked' );
print $output;
}
#do not delete last line
1;