diff options
author | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-04-09 14:27:52 +0200 |
---|---|---|
committer | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-04-09 14:27:52 +0200 |
commit | 7187516718639fe93a9fb8fa78960bce85c7eaca (patch) | |
tree | cd7c129f17fd69088a612a4d685424aa5768fee7 /include | |
parent | 7ac4b83c39d841c80c39ca034971aaaa4bdf0e59 (diff) | |
download | volse-hubzilla-7187516718639fe93a9fb8fa78960bce85c7eaca.tar.gz volse-hubzilla-7187516718639fe93a9fb8fa78960bce85c7eaca.tar.bz2 volse-hubzilla-7187516718639fe93a9fb8fa78960bce85c7eaca.zip |
fixed some typos
Diffstat (limited to 'include')
-rw-r--r-- | include/dba.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/dba.php b/include/dba.php index 8a9d599c4..1421a703d 100644 --- a/include/dba.php +++ b/include/dba.php @@ -54,10 +54,10 @@ if(! class_exists('dba')) { if(class_exists('mysqli')) { $this->db = new mysqli($server,$user,$pass,$db); - if(NULL === $this->db->connect_error()) { + if(NULL === $this->db->connect_error) { $this->connected = true; } else { - throw new RuntimeException($this->db->connect_error()); + throw new RuntimeException($this->db->connect_error); } } else { $this->mysqli = false; @@ -81,7 +81,7 @@ if(! class_exists('dba')) { public function q($sql) { if((! $this->db) || (! $this->connected)) { - throwOrLog(new RuntimeException(t("There is no db connection. "))); + $this->throwOrLog(new RuntimeException(t("There is no db connection. "))); return; } @@ -121,7 +121,7 @@ if(! class_exists('dba')) { } logger('dba: ' . $str ); if(FALSE===$result) { - throwOrLog(new RuntimeException('dba: ' . $str)); + $this->throwOrLog(new RuntimeException('dba: ' . $str)); return; } } |