Ignore:
Timestamp:
Mar 31, 2010, 6:32:40 PM (14 years ago)
Author:
george
Message:
  • Upraveno: Aktualizace fóra.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/forum/includes/functions_jabber.php

    r400 r702  
    33*
    44* @package phpBB3
    5 * @version $Id: functions_jabber.php 8979 2008-10-08 12:44:23Z acydburn $
     5* @version $Id$
    66* @copyright (c) 2007 phpBB Group
    77* @license http://opensource.org/licenses/gpl-license.php GNU Public License
     
    477477                                        else if (in_array('PLAIN', $methods) && ($this->session['ssl'] || !empty($this->session['tls'])))
    478478                                        {
     479                                                // http://www.ietf.org/rfc/rfc4616.txt (PLAIN SASL Mechanism)
    479480                                                $this->send("<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='PLAIN'>"
    480                                                         . base64_encode(chr(0) . $this->username . '@' . $this->server . chr(0) . $this->password) .
     481                                                        . base64_encode($this->username . '@' . $this->server . chr(0) . $this->username . chr(0) . $this->password) .
    481482                                                        '</auth>');
    482483                                        }
Note: See TracChangeset for help on using the changeset viewer.