mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- added some forgotten account-srings - fixed an error handling ItemFilter /w upgradeItems + markdown appearing in tooltips - relaxed session-regeneration (only regenerates on status changes (signin/-out)), fixes losing the session, when opening multiple tabs at once - striped smarty from profiler (only cleanups remaining) - moved profiler-ajax to AjaxHandler - created a (dummy, for now) ProfileClass to handle Chars and Profiles
20 lines
326 B
PHP
20 lines
326 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
function extAuth($user, $pass, &$userId = 0)
|
|
{
|
|
/*
|
|
insert some auth mechanism here
|
|
|
|
see defines for usable return values
|
|
set userId for identification
|
|
*/
|
|
|
|
return AUTH_INTERNAL_ERR;
|
|
}
|
|
|
|
?>
|