Commit 475f0cea authored by terry%mozilla.org's avatar terry%mozilla.org

Patch by aclark@ghoti.org -- use localconfig file to get database

connection info.
parent 6f37d31f
...@@ -32,6 +32,7 @@ sub globals_pl_sillyness { ...@@ -32,6 +32,7 @@ sub globals_pl_sillyness {
$zz = @main::chooseone; $zz = @main::chooseone;
$zz = @main::db_errstr; $zz = @main::db_errstr;
$zz = @main::default_column_list; $zz = @main::default_column_list;
$zz = $main::defaultqueryname;
$zz = @main::dontchange; $zz = @main::dontchange;
$zz = %main::keywordsbyname; $zz = %main::keywordsbyname;
$zz = @main::legal_bug_status; $zz = @main::legal_bug_status;
...@@ -48,6 +49,18 @@ sub globals_pl_sillyness { ...@@ -48,6 +49,18 @@ sub globals_pl_sillyness {
$zz = @main::prodmaxvotes; $zz = @main::prodmaxvotes;
} }
#
# Here are the --LOCAL-- variables defined in 'localconfig' that we'll use
# here
#
my $db_host = "localhost";
my $db_name = "bugs";
my $db_user = "bugs";
my $db_pass = "";
do 'localconfig';
use Mysql; use Mysql;
use Date::Format; # For time2str(). use Date::Format; # For time2str().
...@@ -63,7 +76,7 @@ $::defaultqueryname = "(Default query)"; ...@@ -63,7 +76,7 @@ $::defaultqueryname = "(Default query)";
sub ConnectToDatabase { sub ConnectToDatabase {
if (!defined $::db) { if (!defined $::db) {
$::db = Mysql->Connect("localhost", "bugs", "bugs", "") $::db = Mysql->Connect($db_host, $db_name, $db_user, $db_pass)
|| die "Can't connect to database server."; || die "Can't connect to database server.";
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment