aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2004-02-03 02:34:40 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2004-02-03 02:34:40 +0000
commite2862f3ebd79459c8227566269fc14d54d168c08 (patch)
tree33a5da5d5a42702274ff3f176bb9e7bff8aebb59 /phpBB/includes
parent06c37481ccdc52735776c6ec24204a21f5a00d7f (diff)
downloadforums-e2862f3ebd79459c8227566269fc14d54d168c08.tar
forums-e2862f3ebd79459c8227566269fc14d54d168c08.tar.gz
forums-e2862f3ebd79459c8227566269fc14d54d168c08.tar.bz2
forums-e2862f3ebd79459c8227566269fc14d54d168c08.tar.xz
forums-e2862f3ebd79459c8227566269fc14d54d168c08.zip
"Fixed" issue that was causing problems some time ago with server
git-svn-id: file:///svn/phpbb/trunk@4786 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions_jabber.php3
1 files changed, 1 insertions, 2 deletions
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;