From de7b4681c953982fb8e33a5f74eb93ee8e539108 Mon Sep 17 00:00:00 2001 From: Christoph Burschka Date: Thu, 16 Jan 2014 15:34:03 +0100 Subject: Finished session auth framework for now. (fixes #1) Doc changes and some implementations remain. --- plugins/smf2/smf2.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/smf2') diff --git a/plugins/smf2/smf2.module b/plugins/smf2/smf2.module index 066780e..1f91bf0 100644 --- a/plugins/smf2/smf2.module +++ b/plugins/smf2/smf2.module @@ -12,13 +12,13 @@ function smf2_bootstrap($config) { } function smf2_init($config) { - smf2_bootstap($config); + smf2_bootstrap($config); require_once __DIR__ . '/BridgeSMF2.php'; return new BridgeSMF2(); } function smf2_session($config) { - smf2_bootstap($config); + smf2_bootstrap($config); $user = smf_ssi('welcome', NULL); return (empty($user['is_guest']) && !empty($user['name'])) ? $user['name'] : FALSE; } -- cgit v1.1