diff options
author | uckelman <uckelman@nomic.net> | 2010-11-22 22:12:50 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-11-22 22:12:50 +0000 |
commit | f74323a49897c9e646d586b68ec80cc0f3773d02 (patch) | |
tree | ac9d3e521ac4f48caf6d132821395672f532a90c /src/forum_post_send.php | |
parent | 4b810d86950d0125d5f16b80defd505f540a8bad (diff) |
Renamed $db so as not to clobber phpbb's $db global.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@7477 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/forum_post_send.php')
-rw-r--r-- | src/forum_post_send.php | 4 |
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(); |