Files
phpmyadmin/readme.php
Marc Delisle 609d38a9cd start QA_11
2007-07-18 15:55:11 +00:00

18 lines
354 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Simple script to set correct charset for the readme
*
* 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=utf-8');
readfile('README');
?>