summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Treat2020-10-08 05:39:43 +0000
committerRobert Treat2020-10-09 04:03:46 +0000
commit4b914974d2a1418aac463f89e89a5b9506838b88 (patch)
tree9a125947d9e071bed97902334bf62d18c13cfcda
parentb3b1b68e32b0b4f027a7e20b906035fd91e77b14 (diff)
Fix links to docs for pgsql 13 & 14
For version 14, we point to the /devel/ docs, since that version is currently in dev. I also bumped the fall through to point to v14, arguably we could instead point to /current/, but any current version will work, so I think devel is more likely.
-rw-r--r--classes/database/Postgres.php2
-rw-r--r--help/PostgresDoc13.php13
-rw-r--r--help/PostgresDoc14.php13
3 files changed, 27 insertions, 1 deletions
diff --git a/classes/database/Postgres.php b/classes/database/Postgres.php
index 6fab3bd7..bfd04a87 100644
--- a/classes/database/Postgres.php
+++ b/classes/database/Postgres.php
@@ -419,7 +419,7 @@ class Postgres extends ADODB_base {
}
function getHelpPages() {
- include_once('./help/PostgresDoc95.php');
+ include_once('./help/PostgresDoc14.php');
return $this->help_page;
}
diff --git a/help/PostgresDoc13.php b/help/PostgresDoc13.php
new file mode 100644
index 00000000..b261087b
--- /dev/null
+++ b/help/PostgresDoc13.php
@@ -0,0 +1,13 @@
+<?php
+
+/**
+ * Help links for PostgreSQL 9.5 documentation
+ *
+ * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
+ */
+
+include('./help/PostgresDoc12.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '13');
+
+?>
diff --git a/help/PostgresDoc14.php b/help/PostgresDoc14.php
new file mode 100644
index 00000000..2fe76f5f
--- /dev/null
+++ b/help/PostgresDoc14.php
@@ -0,0 +1,13 @@
+<?php
+
+/**
+ * Help links for PostgreSQL 9.5 documentation
+ *
+ * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
+ */
+
+include('./help/PostgresDoc13.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], 'devel');
+
+?>