From: Roland Häder Date: Tue, 8 Nov 2011 03:00:46 +0000 (+0000) Subject: Fixed this :( X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=4efbb0ba578c90826843d446a37afdca1d6b3948 Fixed this :( --- 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]);