"Fixed" issue that was causing problems some time ago with server

git-svn-id: file:///svn/phpbb/trunk@4786 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2004-02-03 02:34:40 +00:00
parent 06c37481cc
commit e2862f3ebd

View file

@ -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;