From 0658cd7f6351eb849b36b64b9b2b6d1c06046fa2 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Tue, 25 Oct 2005 11:18:49 +0000 Subject: [PATCH] use correct name to connect to the db 2005-10-25 Vincent Untz * foundation.gnome.org/vote/include/election-sql.php: use correct name to connect to the db --- ChangeLog | 5 +++++ foundation.gnome.org/vote/include/election-sql.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a4edda9..0aee9c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-25 Vincent Untz + + * foundation.gnome.org/vote/include/election-sql.php: use correct name + to connect to the db + 2005-10-24 Vincent Untz * foundation.gnome.org/vote/*: s/option/choice/, also rename the diff --git a/foundation.gnome.org/vote/include/election-sql.php b/foundation.gnome.org/vote/include/election-sql.php index 0f17210..6c2929f 100644 --- a/foundation.gnome.org/vote/include/election-sql.php +++ b/foundation.gnome.org/vote/include/election-sql.php @@ -40,7 +40,7 @@ function elec_sql_open () { return FALSE; } - $select_base = mysql_select_db ($mysql_database, $handle); + $select_base = mysql_select_db ($mysql_db, $handle); if (!$select_base) { elec_sql_close ($handle); return FALSE;