From 0adc501dc7d321b833537a17797605c6bb853a03 Mon Sep 17 00:00:00 2001 From: chriskl Date: Tue, 15 Mar 2005 02:55:45 +0000 Subject: [PATCH] Correct last internal oid value for PostgreSQL 8.0 --- classes/database/Postgres80.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/database/Postgres80.php b/classes/database/Postgres80.php index ea71d33c..98df38f9 100644 --- a/classes/database/Postgres80.php +++ b/classes/database/Postgres80.php @@ -3,7 +3,7 @@ /** * PostgreSQL 8.0 support * - * $Id: Postgres80.php,v 1.10 2005/02/06 00:34:20 mr-russ Exp $ + * $Id: Postgres80.php,v 1.11 2005/03/15 02:55:45 chriskl Exp $ */ include_once('./classes/database/Postgres74.php'); @@ -24,7 +24,7 @@ class Postgres80 extends Postgres74 { ); // Last oid assigned to a system object - var $_lastSystemOID = 17226; + var $_lastSystemOID = 17228; /** * Constructor -- 2.39.5