diff options
Diffstat (limited to 'plugins/phpbb3/JabberAuthPhpBB3.php')
| -rw-r--r-- | plugins/phpbb3/JabberAuthPhpBB3.php | 38 | 
1 files changed, 0 insertions, 38 deletions
diff --git a/plugins/phpbb3/JabberAuthPhpBB3.php b/plugins/phpbb3/JabberAuthPhpBB3.php deleted file mode 100644 index e60cbae..0000000 --- a/plugins/phpbb3/JabberAuthPhpBB3.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -class JabberAuthPhpBB extends JabberAuth { -  var $auth; -  var $db; -   -  function __construct($auth, $db, $logpath) { -    $this->logpath = $logpath; -    parent::init(); -    $this->auth = $auth; -    $this->db = $db; -  } - -  function isuser($username, $server) { -    $username_clean = utf8_clean_string($username); -    $row = $this->db->sql_fetchrow($this->db->sql_query('SELECT username FROM ' . USERS_TABLE . ' WHERE username_clean = ' . "'" . $this->db->sql_escape($username_clean) . "'" . ';')); -    return !empty($row); -  } - -  function auth($username, $server, $password) { -    $result = $this->auth->login($username, $password); -    return $result['status'] == LOGIN_SUCCESS; -  } -   -  // The following functions are disabled. This script will not change the phpBB user database. -   -  function setpass($username, $server, $password) { -    return FALSE; -  } - -  function tryregister($username, $server, $password) { -    return FALSE; -  } - -  function removeuser($username, $server) { -    return FALSE; -  } -}  | 
