19 lines
344 B
PHP
19 lines
344 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
function extAuth($user, $pass, &$userId = 0, &$userGroup = -1)
|
|
{
|
|
/*
|
|
insert some auth mechanism here
|
|
|
|
see defines for usable return values
|
|
set userId for identification
|
|
*/
|
|
|
|
return AUTH_INTERNAL_ERR;
|
|
}
|
|
|
|
?>
|