summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Treat2018-11-01 22:25:33 +0000
committerRobert Treat2018-11-01 22:25:33 +0000
commitf6bb783139d7d6d076cc8d09c3fa0b8de6004269 (patch)
tree397db5e47e42af2802f7dd67b00da9b676b9ff93
parent23a6184b353601a6f3890077ab4eeaa31e932ba8 (diff)
Fix links for help docs on new versions. Really we should refactor this like with the database classes, but just extending it for now.
-rw-r--r--help/PostgresDoc10.php13
-rw-r--r--help/PostgresDoc11.php13
-rw-r--r--help/PostgresDoc12.php13
-rw-r--r--help/PostgresDoc96.php13
4 files changed, 52 insertions, 0 deletions
diff --git a/help/PostgresDoc10.php b/help/PostgresDoc10.php
new file mode 100644
index 00000000..79fb627a
--- /dev/null
+++ b/help/PostgresDoc10.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/PostgresDoc96.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '10');
+
+?>
diff --git a/help/PostgresDoc11.php b/help/PostgresDoc11.php
new file mode 100644
index 00000000..36e768f9
--- /dev/null
+++ b/help/PostgresDoc11.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/PostgresDoc10.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '11');
+
+?>
diff --git a/help/PostgresDoc12.php b/help/PostgresDoc12.php
new file mode 100644
index 00000000..154953d7
--- /dev/null
+++ b/help/PostgresDoc12.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/PostgresDoc11.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '12');
+
+?>
diff --git a/help/PostgresDoc96.php b/help/PostgresDoc96.php
new file mode 100644
index 00000000..7bfaca3b
--- /dev/null
+++ b/help/PostgresDoc96.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/PostgresDoc95.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '9.6');
+
+?>