summaryrefslogtreecommitdiff
path: root/util/multi.pl
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-05-20 17:46:52 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-05-20 17:46:52 +0000
commitc2615af845fef85c048d3d1b2e0fd83b701dc4e1 (patch)
treeffd38c74eee923eedbb6cec3294165dcd5fa733f /util/multi.pl
parent2ce770e7e5817f8838fdaf7bc7eda2a8da972962 (diff)
Several bugfixes, xml extention to rss feeds, noindex on user forms, client side filter selection, and how the fuck did the "Finished" status get lost!?
git-svn-id: svn://vndb.org/vndb@14 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
Diffstat (limited to 'util/multi.pl')
-rw-r--r--util/multi.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/multi.pl b/util/multi.pl
index 93c4fe44..888dbd4f 100644
--- a/util/multi.pl
+++ b/util/multi.pl
@@ -56,7 +56,6 @@ our $LOGDIR = '/www/vndb/data/log';
our $LOGLVL = 3; # 3:DEBUG, 2:ACTIONS, 1:WARN
our $STOP = 0;
our $DAEMONIZE = (grep /^-c$/, @ARGV) ? 1 : (grep /^-s$/, @ARGV) ? 2 : 0;
-our %MODULES = ();
if(grep /^-a$/, @ARGV) {
@@ -80,7 +79,7 @@ Multi::Image->spawn();
Multi::Sitemap->spawn();
Multi::Anime->spawn();
Multi::Maintenance->spawn();
-Multi::IRC->spawn(user => 'Multi_test', channel => '#vndb_test') if !$VNDB::DEBUG;
+Multi::IRC->spawn() if !$VNDB::DEBUG;
$SIG{__WARN__} = sub {(local$_=shift)=~s/\r?\n//;$poe_kernel->call(core=>log=>1,'__WARN__: '.$_)};