From: skodak Date: Tue, 29 Aug 2006 22:06:31 +0000 (+0000) Subject: fixed $zthis typo in postgres7 driver, Eloy is reporting it upstream X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=a68f983779b6a7e5189f66512d899ece8e2beb32;p=moodle.git fixed $zthis typo in postgres7 driver, Eloy is reporting it upstream --- diff --git a/lib/adodb/drivers/adodb-postgres7.inc.php b/lib/adodb/drivers/adodb-postgres7.inc.php index c6e0b82535..07978e9c2a 100644 --- a/lib/adodb/drivers/adodb-postgres7.inc.php +++ b/lib/adodb/drivers/adodb-postgres7.inc.php @@ -30,7 +30,7 @@ class ADODB_postgres7 extends ADODB_postgres64 { } $this->_bindInputArray = PHP_VERSION >= 5.1; - $info = $zthis->ServerInfo(); + $info = $this->ServerInfo(); $this->pgVersion = (float) substr($info['version'],0,3); if ($this->pgVersion >= 7.1) { // good till version 999 $this->_nestedSQL = true; diff --git a/lib/adodb/readme_moodle.txt b/lib/adodb/readme_moodle.txt index b86e8b9764..251b6c2065 100644 --- a/lib/adodb/readme_moodle.txt +++ b/lib/adodb/readme_moodle.txt @@ -12,5 +12,8 @@ Added: * tests/tmssql.php - detection of attack attempts and overwrite on incorrectly upgraded sites * readme_moodle.txt - this file ;-) +our bug fixes: + * drivers/adodb-postgres7.inc.php: line 33 $zthis typo - should be $this + skodak 29 August 2006 \ No newline at end of file