Add phpdoc header comment.

This commit is contained in:
Michal Čihař
2006-09-18 14:48:41 +00:00
parent b4d1a4656c
commit 00223529af
2 changed files with 16 additions and 3 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
$Id$ $Id$
$Source$ $Source$
2006-09-18 Michal Čihař <michal@cihar.com>
* scripts/setup.php: Add phpdoc header comment.
2006-09-15 Marc Delisle <lem9@users.sourceforge.net> 2006-09-15 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php libraries/Config.class.php: * libraries/common.lib.php libraries/Config.class.php:
rename a function borrowed from Moodle to avoid double definition rename a function borrowed from Moodle to avoid double definition

View File

@@ -1,8 +1,18 @@
<?php <?php
/**
* phpMyAdmin setup script
*
* PHP versions 4 and 5
*
* @category Setup
* @package phpMyAdmin-setup
* @author Michal Čihař <michal@cihar.com>
* @copyright 2006 Michal Čihař <michal@cihar.com>
* @license http://www.gnu.org/licenses/gpl.html GNU GPL 2.0
* @version CVS: $Id$
*/
/* $Id$ */ /* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4: /* vim: expandtab sw=4 ts=4 sts=4: */
// phpMyAdmin setup script by Michal Čihař <michal@cihar.com>
// Grab phpMyAdmin version and PMA_dl function // Grab phpMyAdmin version and PMA_dl function
define( 'PMA_MINIMUM_COMMON', TRUE ); define( 'PMA_MINIMUM_COMMON', TRUE );