summaryrefslogtreecommitdiff
path: root/plugins/phpbb30
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/phpbb30')
-rw-r--r--plugins/phpbb30/BridgePhpBB30.php2
-rw-r--r--plugins/phpbb30/phpbb30.module8
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/phpbb30/BridgePhpBB30.php b/plugins/phpbb30/BridgePhpBB30.php
index bc7d8c8..fd48e31 100644
--- a/plugins/phpbb30/BridgePhpBB30.php
+++ b/plugins/phpbb30/BridgePhpBB30.php
@@ -1,6 +1,6 @@
<?php
-class BridgePhpBB3 extends EjabberdAuthBridge {
+class BridgePhpBB30 extends EjabberdAuthBridge {
var $auth;
var $db;
diff --git a/plugins/phpbb30/phpbb30.module b/plugins/phpbb30/phpbb30.module
index 7502094..2fa8b9a 100644
--- a/plugins/phpbb30/phpbb30.module
+++ b/plugins/phpbb30/phpbb30.module
@@ -1,11 +1,11 @@
<?php
-function phpbb3_init($config) {
+function phpbb30_init($config) {
global $phpbb_root_path;
$phpbb_root_path = $config['root_path'];
// Bootstrap the phpBB system.
- require_once __DIR__ . '/phpbb3_bootstrap.php';
+ require_once __DIR__ . '/phpbb30_bootstrap.php';
// Load the plugin.
- require_once __DIR__ . '/BridgePhpBB3.php';
- return new BridgePhpBB3($auth, $db);
+ require_once __DIR__ . '/BridgePhpBB30.php';
+ return new BridgePhpBB30($auth, $db);
}