summaryrefslogtreecommitdiff
path: root/plugins/smf2
diff options
context:
space:
mode:
authorChristoph Burschka2014-01-16 15:34:03 +0100
committerChristoph Burschka2014-01-16 15:34:03 +0100
commitde7b4681c953982fb8e33a5f74eb93ee8e539108 (patch)
tree4165c34d2066e1e135f050ccddc37db9beba09d7 /plugins/smf2
parentImplement smf2_session and finish RPC code. (#1) (diff)
downloadejabberd-auth-php-de7b4681c953982fb8e33a5f74eb93ee8e539108.tar.gz
Finished session auth framework for now. (fixes #1)
Doc changes and some implementations remain.
Diffstat (limited to 'plugins/smf2')
-rw-r--r--plugins/smf2/smf2.module4
1 files changed, 2 insertions, 2 deletions
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;
}