finished first "alpha" version of PHP-P10 v2
[PHP-P10.git] / main.php
index 57ec8624e912e340e931b5294dcc6f4db7956dd0..af8810c05517d0b4a212a6785a0bc972e893819d 100644 (file)
--- a/main.php
+++ b/main.php
@@ -52,13 +52,10 @@ $botloader = new BotLoader($uplink);
 $botloader->loadBots();
 BotLoader::load("ModManager", "ModManager.class.php");
 
-function shutdown($signal) {
+function shutdown($signal = 0) {
        global $botloader;
        global $uplink;
-       if($signal == SIGINT) $type="SIGINT";
-       else if($signal == SIGTERM) $type="SIGTERM";
-       else $type = $signal;
-       echo "\n\nrecived shutdown instruction... ".$type."\n";
+       echo "\n\nrecived shutdown instruction...\n";
        $botloader->unloadBots();
        $botloader->save();
        $uplink->shutdown();