From 7288d3417adb446166a53374152227a62e3516ff Mon Sep 17 00:00:00 2001 From: pk910 Date: Thu, 28 Jul 2011 06:27:50 +0200 Subject: [PATCH] implode mode string with " " as delimiter --- Uplink/Uplink.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Uplink/Uplink.class.php b/Uplink/Uplink.class.php index 1e8aca0..f83c7e3 100644 --- a/Uplink/Uplink.class.php +++ b/Uplink/Uplink.class.php @@ -483,7 +483,7 @@ class Uplink { if($this->eventHandler) $this->eventHandler->event_join($user, $channel, true); } - $modes->parseModes(implode(array_slice($args, 2, $modeparamcount))); + $modes->parseModes(implode(" ", array_slice($args, 2, $modeparamcount))); } private function recv_join($from, $args) { -- 2.20.1