mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
misc fixes:
- extAuth should be expected in config/ and not /config/ - fixed copy/paste-error preventing purge of memcached pages - fixed 'text-shadow' on red-buttons
This commit is contained in:
@@ -283,10 +283,10 @@ class User
|
||||
}
|
||||
case AUTH_MODE_EXTERNAL:
|
||||
{
|
||||
if (!file_exists('/config/extAuth.php'))
|
||||
if (!file_exists('config/extAuth.php'))
|
||||
return AUTH_INTERNAL_ERR;
|
||||
|
||||
require '/config/extAuth.php';
|
||||
require 'config/extAuth.php';
|
||||
$result = extAuth($name, $pass, $extId);
|
||||
|
||||
if ($result == AUTH_OK && $extId)
|
||||
|
||||
Reference in New Issue
Block a user