summaryrefslogtreecommitdiff
path: root/src/forum_post_send.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/forum_post_send.php')
-rw-r--r--src/forum_post_send.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/forum_post_send.php b/src/forum_post_send.php
index 723ed66..08a713a 100644
--- a/src/forum_post_send.php
+++ b/src/forum_post_send.php
@@ -52,8 +52,8 @@ function send_post_to_lists($config, $user, $mode, $data, $post_data) {
require_once(__DIR__ . '/PhpBB3Impl.php');
require_once(__DIR__ . '/PhpBB3ToMailman.php');
- $db = new PDO('mysql:host=' . DB_HOST . ';dbname=' . DB, DB_USER, DB_PASS);
- $bridge = new BridgeImpl($db);
+ $bdb = new PDO('mysql:host=' . DB_HOST . ';dbname=' . DB, DB_USER, DB_PASS);
+ $bridge = new BridgeImpl($bdb);
$phpbb = new PhpBB3Impl();