summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Treat2015-02-16 03:02:15 +0000
committerRobert Treat2015-02-16 03:02:15 +0000
commit775e9613903b043ede4cb5254f5ba9d8363b2f05 (patch)
tree5f182215981c8cf333e6d74894d4f17452f45586
parente7d13050ac738d4cebfb6a90d1c40e816dbdccc3 (diff)
Fix help links for pg 9.3 / 9.4
-rw-r--r--help/PostgresDoc93.php13
-rw-r--r--help/PostgresDoc94.php13
2 files changed, 26 insertions, 0 deletions
diff --git a/help/PostgresDoc93.php b/help/PostgresDoc93.php
new file mode 100644
index 00000000..014b0c84
--- /dev/null
+++ b/help/PostgresDoc93.php
@@ -0,0 +1,13 @@
+<?php
+
+/**
+ * Help links for PostgreSQL 9.3 documentation
+ *
+ * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
+ */
+
+include('./help/PostgresDoc92.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '9.3');
+
+?>
diff --git a/help/PostgresDoc94.php b/help/PostgresDoc94.php
new file mode 100644
index 00000000..94a1dedc
--- /dev/null
+++ b/help/PostgresDoc94.php
@@ -0,0 +1,13 @@
+<?php
+
+/**
+ * Help links for PostgreSQL 9.4 documentation
+ *
+ * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
+ */
+
+include('./help/PostgresDoc93.php');
+
+$this->help_base = sprintf($GLOBALS['conf']['help_base'], '9.4');
+
+?>