fixed $zthis typo in postgres7 driver, Eloy is reporting it upstream

This commit is contained in:
skodak 2006-08-29 22:06:31 +00:00
parent a0da32e935
commit a68f983779
2 changed files with 4 additions and 1 deletions

View 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;

View 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