diff options
author | Friendika <info@friendika.com> | 2011-03-03 15:41:08 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-03 15:41:08 -0800 |
commit | b8757fb45624d038e1f072fa40fb439608532164 (patch) | |
tree | ac25604bd4ed5c730ff9bd43d89b478de60e7406 /include/dba.php | |
parent | bfdf4bddc984838bc1bccccfe1c2b7ddebe43e92 (diff) | |
download | volse-hubzilla-b8757fb45624d038e1f072fa40fb439608532164.tar.gz volse-hubzilla-b8757fb45624d038e1f072fa40fb439608532164.tar.bz2 volse-hubzilla-b8757fb45624d038e1f072fa40fb439608532164.zip |
make sure db queries never get called if the database isn't open
Diffstat (limited to 'include/dba.php')
-rw-r--r-- | include/dba.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/dba.php b/include/dba.php index b05a1cabf..b89648bca 100644 --- a/include/dba.php +++ b/include/dba.php @@ -20,12 +20,14 @@ class dba { function __construct($server,$user,$pass,$db,$install = false) { $this->db = @new mysqli($server,$user,$pass,$db); - if((mysqli_connect_errno()) && (! $install)) { + if(! mysql_connect_errno()) { + $this->connected = true; + } + else { $this->db = null; - system_unavailable(); + if(! $install) + system_unavailable(); } - else - $this->connected = true; } public function getdb() { @@ -34,7 +36,7 @@ class dba { public function q($sql) { - if(! $this->db ) + if((! $this->db) || (! $this->connected)) return false; $result = @$this->db->query($sql); @@ -92,7 +94,8 @@ class dba { } public function escape($str) { - return @$this->db->real_escape_string($str); + if($this->db && $this->connected) + return @$this->db->real_escape_string($str); } function __destruct() { |