remove merge remnants

This commit is contained in:
Graham Knop 2011-06-16 00:36:45 -05:00
parent 6dfeb6ef1a
commit 841b1f60f7
2 changed files with 0 additions and 2555 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,30 +0,0 @@
use strict;
use WebGUI::Paths -preload;
use Log::Log4perl;
use DBI;
use WebGUI;
use WebGUI::Config;
use Apache2::Cookie;
use Apache2::ServerUtil;
Log::Log4perl->init( WebGUI::Paths->logConfig );
DBI->install_driver("mysql");
if ( $ENV{MOD_PERL} ) {
# Add WebGUI to Apache version tokens
my $server = Apache2::ServerUtil->server;
$server->push_handlers(PerlPostConfigHandler => sub {
$server->add_version_component('WebGUI/' . $WebGUI::VERSION);
});
}
$| = 1;
print "\nStarting WebGUI ".$WebGUI::VERSION."\n";
WebGUI::Config->loadAllConfigs;
1;