summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume (ioguix) de Rorthais2010-12-20 23:23:46 +0000
committerGuillaume (ioguix) de Rorthais2010-12-20 23:23:46 +0000
commit331e91c655bbadbe633f0c723500899726d02810 (patch)
treed30647a21f87c8264414d2c0bc91075c46bc6b24
parent8d20e11577d2300462ff80897f28fe04ec20a8df (diff)
Fix bad inheritance between pg83 -> pg instead of pg83 -> pg84 in the database access classes
-rw-r--r--classes/database/Postgres83.php4
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;