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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-20 13:32:13 +0300
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-20 13:32:13 +0300
commit374abd5173baac3ed0f6912dfd48568b3eef8365 (patch)
tree7cff280573741c6f64b210397a7c93edefc60a55 /license.php
parentb948e1658466c40fb601cbc48c80920c6b399a4f (diff)
fixed/added page level docblock
Diffstat (limited to 'license.php')
-rw-r--r--license.php15
1 files changed, 11 insertions, 4 deletions
diff --git a/license.php b/license.php
index ca7ae7f150..91927f41ae 100644
--- a/license.php
+++ b/license.php
@@ -1,10 +1,17 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
-// Simple script to set correct charset for the license
-//
-// Note: please do not fold this script into a general script
-// that would read any file using a GET parameter, it would open a hole
+/**
+ * Simple script to set correct charset for the license
+ *
+ * Note: please do not fold this script into a general script
+ * that would read any file using a GET parameter, it would open a hole
+ *
+ * @version $Id$
+ */
+/**
+ *
+ */
header('Content-type: text/plain; charset=iso-8859-1');
readfile('LICENSE');
?>