From 331e91c655bbadbe633f0c723500899726d02810 Mon Sep 17 00:00:00 2001 From: "Guillaume (ioguix) de Rorthais" Date: Tue, 21 Dec 2010 00:23:46 +0100 Subject: [PATCH] Fix bad inheritance between pg83 -> pg instead of pg83 -> pg84 in the database access classes --- classes/database/Postgres83.php | 4 ++-- 1 file 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; -- 2.39.5