--- /dev/null
+<?php
+
+/**
+ * PostgreSQL 8.3 support
+ *
+ * $Id: Postgres83.php,v 1.1 2007/06/07 02:20:20 xzilla Exp $
+ */
+
+include_once('./classes/database/Postgres82.php');
+
+class Postgres83 extends Postgres82 {
+
+ var $major_version = 8.3;
+
+ // Last oid assigned to a system object
+ var $_lastSystemOID = 17231; // need to confirm this once we get to beta!!!
+
+ /**
+ * Constructor
+ * @param $conn The database connection
+ */
+ function Postgres83($conn) {
+ $this->Postgres82($conn);
+ }
+
+ // Help functions
+
+ function getHelpPages() {
+ include_once('./help/PostgresDoc83.php');
+ return $this->help_page;
+ }
+
+?>
--- /dev/null
+<?php
+
+/**
+ * Help links for PostgreSQL 8.3 documentation
+ *
+ * $Id: PostgresDoc83.php,v 1.1 2007/06/07 02:20:20 xzilla Exp $
+ */
+
+include('./help/PostgresDoc82.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], 'current');
+
+?>