summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-11 23:43:03 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-03-11 23:43:03 -0400
commit745cdd206cb5b0c286c9b84bea6ee98ce4868d95 (patch)
tree6f881e55134d2a3a73c882d2359ed69dabaa668f /index.php
parent4a41dbcdc4ba61b8aa59f4d3cba545652e5706e1 (diff)
fixup config errors
Diffstat (limited to 'index.php')
-rw-r--r--index.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.php b/index.php
index dae1ae751..e83d08c13 100644
--- a/index.php
+++ b/index.php
@@ -63,7 +63,7 @@ function handleError($error)
function main()
{
- global $user, $action;
+ global $user, $action, $config;
if (!_have_config()) {
$msg = sprintf(_("No configuration file found. Try running ".
@@ -131,11 +131,11 @@ function main()
if (common_config('db', 'mirror') && $action_obj->isReadOnly()) {
if (is_array(common_config('db', 'mirror'))) {
// "load balancing", ha ha
- $k = array_rand($config['db']['mirror']);
-
- $mirror = $config['db']['mirror'][$k];
+ $arr = common_config('db', 'mirror');
+ $k = array_rand($arr);
+ $mirror = $arr[$k];
} else {
- $mirror = $config['db']['mirror'];
+ $mirror = common_config('db', 'mirror');
}
$config['db']['database'] = $mirror;
}