Changeset 702 for trunk/forum/includes/functions_jabber.php
- Timestamp:
- Mar 31, 2010, 6:32:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/forum/includes/functions_jabber.php
r400 r702 3 3 * 4 4 * @package phpBB3 5 * @version $Id : functions_jabber.php 8979 2008-10-08 12:44:23Z acydburn$5 * @version $Id$ 6 6 * @copyright (c) 2007 phpBB Group 7 7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License … … 477 477 else if (in_array('PLAIN', $methods) && ($this->session['ssl'] || !empty($this->session['tls']))) 478 478 { 479 // http://www.ietf.org/rfc/rfc4616.txt (PLAIN SASL Mechanism) 479 480 $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) . 481 482 '</auth>'); 482 483 }
Note:
See TracChangeset
for help on using the changeset viewer.