From e2862f3ebd79459c8227566269fc14d54d168c08 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 3 Feb 2004 02:34:40 +0000 Subject: "Fixed" issue that was causing problems some time ago with server git-svn-id: file:///svn/phpbb/trunk@4786 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_jabber.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'phpBB/includes/functions_jabber.php') diff --git a/phpBB/includes/functions_jabber.php b/phpBB/includes/functions_jabber.php index fdc76c03da..e0425289f2 100644 --- a/phpBB/includes/functions_jabber.php +++ b/phpBB/includes/functions_jabber.php @@ -180,7 +180,6 @@ class Jabber function SendAuth() { $this->auth_id = 'auth_' . md5(time() . $_SERVER['REMOTE_ADDR']); - $this->jid = "{$this->username}@{$this->server}/{$this->resource}"; // request available authentication methods @@ -1071,7 +1070,7 @@ class CJP_StandardConnector function ReadFromSocket($chunksize) { - $buffer = @fread($this->active_socket, $chunksize); + $buffer = stripslashes(@fread($this->active_socket, $chunksize)); @set_magic_quotes_runtime(get_magic_quotes_gpc()); return $buffer; -- cgit v1.2.1