From 62159cfb03981595a4621c08e4eae81bc512ffb3 Mon Sep 17 00:00:00 2001 From: Tyler Anthony Romeo Date: Sun, 11 May 2014 13:51:41 +0200 Subject: [PATCH] Forgot autoload for hooks class Minor fix Change-Id: I0193877f1c691d4fbe7afd4440ab462e5667268b --- OATHAuth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/OATHAuth.php b/OATHAuth.php index d5c8c619..af129cb4 100644 --- a/OATHAuth.php +++ b/OATHAuth.php @@ -31,6 +31,7 @@ $dir = __DIR__ . '/'; $wgMessagesDirs['OATHAuth'] = __DIR__ . '/i18n'; $wgExtensionMessagesFiles['OATHAuth'] = $dir . 'OATHAuth.i18n.php'; $wgExtensionMessagesFiles['OATHAuthAlias'] = $dir . 'OATHAuth.alias.php'; +$wgAutoloadClasses['OATHAuthHooks'] = $dir . 'OATHAuth.hooks.php'; $wgAutoloadClasses['HOTP'] = $dir . 'lib/hotp.php'; $wgAutoloadClasses['HOTPResult'] = $dir . 'lib/hotp.php'; $wgAutoloadClasses['Base32'] = $dir . 'lib/base32.php';