diff options
author | Guillaume (ioguix) de Rorthais | 2010-12-20 23:23:46 +0000 |
---|---|---|
committer | Guillaume (ioguix) de Rorthais | 2010-12-20 23:23:46 +0000 |
commit | 331e91c655bbadbe633f0c723500899726d02810 (patch) | |
tree | d30647a21f87c8264414d2c0bc91075c46bc6b24 | |
parent | 8d20e11577d2300462ff80897f28fe04ec20a8df (diff) |
Fix bad inheritance between pg83 -> pg instead of pg83 -> pg84 in the database access classes
-rw-r--r-- | classes/database/Postgres83.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/database/Postgres83.php b/classes/database/Postgres83.php index 35cf6752..d66ee539 100644 --- a/classes/database/Postgres83.php +++ b/classes/database/Postgres83.php @@ -6,9 +6,9 @@ * $Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $ */ -include_once('./classes/database/Postgres.php'); +include_once('./classes/database/Postgres84.php'); -class Postgres83 extends Postgres { +class Postgres83 extends Postgres84 { var $major_version = 8.3; |