diff options
author | Urban Müller | 2013-04-29 14:06:33 +0000 |
---|---|---|
committer | Urban Müller | 2013-04-29 14:06:33 +0000 |
commit | 14fb3893280168000605785c5352955d5579ee5e (patch) | |
tree | 458175dfb83aa10d4eeee4a281c7a7e65bb4a3fc | |
parent | 4164f9c2956a76f1335f7413e02e2f8cb870a960 (diff) | |
download | itools-14fb3893280168000605785c5352955d5579ee5e.tar.gz itools-14fb3893280168000605785c5352955d5579ee5e.tar.bz2 itools-14fb3893280168000605785c5352955d5579ee5e.zip |
correctly handle conntect errs
-rw-r--r-- | it_dbi.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_dbi.class b/it_dbi.class index b2f3717..ef193c9 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -214,7 +214,7 @@ function _connect($p = array()) if (!$this->_link) { # One retry after a short delay - it::log('sqllog', "it_dbi(): retrying DB link (mysqli_connect {$p['server']}, {$p['db']}): " . mysqli_error()); + it::log('sqllog', "it_dbi(): retrying DB link (mysqli_connect {$p['server']}, {$p['db']}): " . mysqli_connect_error()); sleep(1); $this->_link = @mysqli_connect($p['server'], $p['user'], $p['pw']); } |