aboutsummaryrefslogtreecommitdiffstats
path: root/cgi-bin
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem.moulin@fripost.org>2012-09-09 21:01:45 +0200
committerGuilhem Moulin <guilhem.moulin@fripost.org>2012-09-09 21:01:45 +0200
commitec17f0ce71a233025768a54b4a1beae34e2b8a45 (patch)
treeb19780f706ae5d228322b3f601c30dbf84e08bf6 /cgi-bin
parent740b76159edede54d04100b3168e43975c34b5e0 (diff)
lib/FPanel/ → lib/Fripost/Panel/
Diffstat (limited to 'cgi-bin')
-rwxr-xr-xcgi-bin/index.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/cgi-bin/index.cgi b/cgi-bin/index.cgi
index 89290e8..5efa469 100755
--- a/cgi-bin/index.cgi
+++ b/cgi-bin/index.cgi
@@ -12,7 +12,7 @@ index.cgi -
=cut
use lib 'lib';
-use FPanel::Interface;
+use Fripost::Panel::Interface;
# TODO: Try out Fast CGI
#use CGI::Fast();
@@ -25,7 +25,7 @@ use FPanel::Interface;
my @config = 'default.in';
push @config, 'config.in' if -f 'config.in';
-my $cgi = FPanel::Interface->new(
+my $cgi = Fripost::Panel::Interface->new(
PARAMS => { cfg_file => [ @config ], format => 'equal' }
);
$cgi->run();