From f3171e923185c3add7c080ec0690233267c220f6 Mon Sep 17 00:00:00 2001 From: Sloane Bernstein Date: Tue, 16 Feb 2021 16:19:09 -0600 Subject: [PATCH] Restore support for PgSQL 9.4 and below The addition of support for PostgreSQL 9.6 and above neglected to change the `Postgres94` class to inherit from `Postgres95` instead of the latest `Postgres` class. This change restores the chain of inheritance, so that `Postgres94` and classes below see overridden methods from `Postgres95` and above. --- classes/database/Postgres94.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/database/Postgres94.php b/classes/database/Postgres94.php index 908825e5..913ea044 100644 --- a/classes/database/Postgres94.php +++ b/classes/database/Postgres94.php @@ -5,9 +5,9 @@ * */ -include_once('./classes/database/Postgres.php'); +include_once('./classes/database/Postgres95.php'); -class Postgres94 extends Postgres { +class Postgres94 extends Postgres95 { var $major_version = 9.4; -- 2.30.2