]> git.mjollnir.org Git - moodle.git/commitdiff
fixed $zthis typo in postgres7 driver, Eloy is reporting it upstream
authorskodak <skodak>
Tue, 29 Aug 2006 22:06:31 +0000 (22:06 +0000)
committerskodak <skodak>
Tue, 29 Aug 2006 22:06:31 +0000 (22:06 +0000)
lib/adodb/drivers/adodb-postgres7.inc.php
lib/adodb/readme_moodle.txt

index c6e0b8253528602e808b2287d783a17d93c8a08e..07978e9c2a709cad9b0c49e8d2445e304b44d814 100644 (file)
@@ -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;
index b86e8b9764b1d50fe7ceb8733f9c751802edd6f4..251b6c206562ddff917953075e7591ab80629f0c 100644 (file)
@@ -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