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:
Sarjuuk
2015-06-08 21:02:05 +02:00
parent 81a5a527ec
commit 7a0c6f22dc
3 changed files with 4 additions and 4 deletions

View File

@@ -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)