diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-04-09 12:26:45 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-04-09 12:26:45 +0000 |
commit | fc32df035889dd74f2cfc1c62bb793d36f333ec2 (patch) | |
tree | 12134eada004226d1ea5b31b420d1c63f05e7376 /phpBB/includes/functions_jabber.php | |
parent | 0ba3f620d4afb963b89c532b664693c974ec4f8a (diff) | |
download | forums-fc32df035889dd74f2cfc1c62bb793d36f333ec2.tar forums-fc32df035889dd74f2cfc1c62bb793d36f333ec2.tar.gz forums-fc32df035889dd74f2cfc1c62bb793d36f333ec2.tar.bz2 forums-fc32df035889dd74f2cfc1c62bb793d36f333ec2.tar.xz forums-fc32df035889dd74f2cfc1c62bb793d36f333ec2.zip |
- Documentation related changes
- added resend activation email dialog
- fixed issue in session code
- log failed/successful admin re-authentication/login
- fixed simple forum dropdown box (used in mcp and posting)
git-svn-id: file:///svn/phpbb/trunk@5114 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_jabber.php')
-rw-r--r-- | phpBB/includes/functions_jabber.php | 61 |
1 files changed, 32 insertions, 29 deletions
diff --git a/phpBB/includes/functions_jabber.php b/phpBB/includes/functions_jabber.php index e0425289f2..dad000c088 100644 --- a/phpBB/includes/functions_jabber.php +++ b/phpBB/includes/functions_jabber.php @@ -1,33 +1,30 @@ <?php -/*************************************************************************** - - Class.Jabber.PHP v0.4 - (c) 2002 Carlo "Gossip" Zottmann - http://phpjabber.g-blog.net *** gossip@jabber.g-blog.net - - The FULL documentation and examples for this software can be found at - http://phpjabber.g-blog.net (not many doc comments in here, sorry) - - last modified: 27.04.2003 13:01:53 CET - - ***************************************************************************/ - -/* - Modified by psoTFX, phpBB Group, 2003. - Removed functions/support not critical to integration with phpBB - - $Id$ +/** +* +* @package phpBB3 +* @version $Id$ +* @copyright (c) 2005 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* */ -/*************************************************************************** - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - ***************************************************************************/ - +/** +* @package phpBB3 +* +* Class.Jabber.PHP v0.4 +* (c) 2002 Carlo "Gossip" Zottmann +* http://phpjabber.g-blog.net *** gossip@jabber.g-blog.net +* +* The FULL documentation and examples for this software can be found at +* http://phpjabber.g-blog.net (not many doc comments in here, sorry) +* +* last modified: 27.04.2003 13:01:53 CET +* +* +* Modified by psoTFX, phpBB Group, 2003. +* Removed functions/support not critical to integration with phpBB +* +*/ class Jabber { var $server; @@ -938,7 +935,10 @@ class Jabber } } -// +/** +* @package phpBB3 +* MakeXML +*/ class MakeXML extends Jabber { var $nodes; @@ -1038,7 +1038,10 @@ class MakeXML extends Jabber } } -// +/** +* @package phpBB3 +* Connector +*/ class CJP_StandardConnector { var $active_socket; |