bug #965548, displaying README and LICENSE
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2005-08-05 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* Documentation.html, readme.php, license.php:
|
||||
bug #965548, displaying README and LICENSE, thanks to Ryan Schmidt
|
||||
|
||||
2005-08-04 Michal Čihař <michal@cihar.com>
|
||||
* libraries/common.lib.php, export.php: Show error header on error to make
|
||||
clear that something bad has happened.
|
||||
|
@@ -44,9 +44,9 @@
|
||||
<li>
|
||||
Local documents:
|
||||
<ul>
|
||||
<li>Version history: <a href="ChangeLog">ChangeLog</a></li>
|
||||
<li>General notes: <a href="README">README</a></li>
|
||||
<li>License: <a href="LICENSE">LICENSE</a></li>
|
||||
<li>Version history: <a href="changelog.php">ChangeLog</a></li>
|
||||
<li>General notes: <a href="readme.php">README</a></li>
|
||||
<li>License: <a href="license.php">LICENSE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
|
10
license.php
Normal file
10
license.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
// Simple script to set correct charset for the license
|
||||
// vim: expandtab sw=4 ts=4 sts=4:
|
||||
//
|
||||
// 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
|
||||
|
||||
header('Content-type: text/plain; charset=iso-8859-1');
|
||||
readfile('LICENSE');
|
||||
?>
|
10
readme.php
Normal file
10
readme.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
// Simple script to set correct charset for the readme
|
||||
// vim: expandtab sw=4 ts=4 sts=4:
|
||||
//
|
||||
// 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
|
||||
|
||||
header('Content-type: text/plain; charset=iso-8859-1');
|
||||
readfile('README');
|
||||
?>
|
Reference in New Issue
Block a user