Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2003-11-18 18:20:45 +0300
committerMichal Čihař <michal@cihar.com>2003-11-18 18:20:45 +0300
commit6884f9701a4052cf03c2af98ce799d2fd41241f5 (patch)
tree0037946d485432525dcf0d55b3e5399113192e1b /chk_rel.php
parent4edf711ada5dc95ed7bb1ff2f57f1f8a1f67bd86 (diff)
no more support for php3
Diffstat (limited to 'chk_rel.php')
-rw-r--r--chk_rel.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/chk_rel.php b/chk_rel.php
new file mode 100644
index 0000000000..5e0058beab
--- /dev/null
+++ b/chk_rel.php
@@ -0,0 +1,26 @@
+<?php
+/* $Id$ */
+// vim: expandtab sw=4 ts=4 sts=4:
+
+
+/**
+ * Gets some core libraries
+ */
+require('./libraries/grab_globals.lib.php');
+require('./libraries/common.lib.php');
+require('./db_details_common.php');
+require('./libraries/relation.lib.php');
+
+
+/**
+ * Gets the relation settings
+ */
+$cfgRelation = PMA_getRelationsParam(TRUE);
+
+
+/**
+ * Displays the footer
+ */
+echo "\n";
+require('./footer.inc.php');
+?>