From 4efbb0ba578c90826843d446a37afdca1d6b3948 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 8 Nov 2011 03:00:46 +0000 Subject: [PATCH] Fixed this :( --- inc/classes/exceptions/socket/class_InvalidSocketException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/classes/exceptions/socket/class_InvalidSocketException.php b/inc/classes/exceptions/socket/class_InvalidSocketException.php index 448d2cbd..dc40287a 100644 --- a/inc/classes/exceptions/socket/class_InvalidSocketException.php +++ b/inc/classes/exceptions/socket/class_InvalidSocketException.php @@ -32,7 +32,7 @@ class InvalidSocketException extends FrameworkException { */ public function __construct (array $messageData, $code) { // Is it a resource? - if (is_resource($message[1])) { + if (is_resource($messageData[1])) { // Get last error $lastError = socket_last_error($messageData[1]); -- 2.39.2