From e77214857420d231cfca830cd55702dd9f705a67 Mon Sep 17 00:00:00 2001 From: samhemelryk Date: Tue, 13 Oct 2009 02:44:13 +0000 Subject: [PATCH] auth-db MDL-20530 Fixed fatal error because of missing include in external db authentication --- auth/db/auth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/auth/db/auth.php b/auth/db/auth.php index a88a9f50b6..b23b65ce32 100644 --- a/auth/db/auth.php +++ b/auth/db/auth.php @@ -17,6 +17,7 @@ if (!defined('MOODLE_INTERNAL')) { } require_once($CFG->libdir.'/authlib.php'); +require_once($CFG->libdir.'/adodb/adodb.inc.php'); /** * External database authentication plugin. -- 2.39.5