summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-03-26 18:19:04 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-03-26 18:19:04 +0000
commite01c325d4ff7adc07d552907f7fb7fdddc56f9b0 (patch)
tree3c46bc26b0a2e4c7db4d1d668593639f78958505 /includes
parent4db70f8a62be5fe8efa4f04216941e7eff7f3db2 (diff)
downloadbrdo-e01c325d4ff7adc07d552907f7fb7fdddc56f9b0.tar.gz
brdo-e01c325d4ff7adc07d552907f7fb7fdddc56f9b0.tar.bz2
#42000, misssing underscore, found by rump
Diffstat (limited to 'includes')
-rw-r--r--includes/database.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database.inc b/includes/database.inc
index fa2d6d2ad..c7903ef16 100644
--- a/includes/database.inc
+++ b/includes/database.inc
@@ -132,7 +132,7 @@ function db_set_active($name = 'default') {
// Set the active connection.
$active_db = $db_conns[$name];
- return array_search($previousdb, $db_conns);
+ return array_search($previous_db, $db_conns);
}
/**