Created
February 11, 2010 13:36
-
-
Save cs278/301507 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* phpBB authentication plugin to check multiple plugins | |
* Need to actually complete this | |
*/ | |
/** | |
* @ignore | |
*/ | |
if (!defined('IN_PHPBB')) | |
{ | |
exit; | |
} | |
function init_multi() | |
{ | |
} | |
function login_multi(&$username, &$password) | |
{ | |
} | |
function autologin_multi() | |
{ | |
} | |
function logout_multi(&$user_row, $new_session) | |
{ | |
} | |
function validate_session_multi(&$user_row) | |
{ | |
} | |
function acp_multi(&$new) | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment