diff options
author | momo-i <webmaster@momo-i.org> | 2011-02-03 09:24:02 +0900 |
---|---|---|
committer | momo-i <webmaster@momo-i.org> | 2011-02-03 09:24:02 +0900 |
commit | 629502b1472db60433af1f1b0780b886c3e5bdd4 (patch) | |
tree | e9dcb151c3edd8065251adf094dd90e20dc86839 /templates/show_user_registration.inc.php | |
parent | 9dd3cdc6245a4235dc2a54db963a9e9f017b6543 (diff) | |
download | ampache-629502b1472db60433af1f1b0780b886c3e5bdd4.tar.gz ampache-629502b1472db60433af1f1b0780b886c3e5bdd4.tar.bz2 ampache-629502b1472db60433af1f1b0780b886c3e5bdd4.zip |
templates header comment modified for phpdoc
Diffstat (limited to 'templates/show_user_registration.inc.php')
-rw-r--r-- | templates/show_user_registration.inc.php | 49 |
1 files changed, 30 insertions, 19 deletions
diff --git a/templates/show_user_registration.inc.php b/templates/show_user_registration.inc.php index bac4a128..e8832ff9 100644 --- a/templates/show_user_registration.inc.php +++ b/templates/show_user_registration.inc.php @@ -1,25 +1,36 @@ <?php /* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ -/* +/** + * Show User Registration + * + * PHP version 5 + * + * LICENSE: GNU General Public License, version 2 (GPLv2) + * Copyright (c) 2001 - 2011 Ampache.org All Rights Reserved + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License v2 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * @category Template + * @package Template + * @author Karl Vollmer <vollmer@ampache.org> + * @copyright 2001 - 2011 Ampache.org + * @license http://opensource.org/licenses/gpl-2.0 GPLv2 + * @version PHP 5.2 + * @link http://www.ampache.org/ + * @since File available since Release 1.0 + */ - Copyright (c) 2001 - 2007 Ampache.org - All rights reserved. - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; version 2 - of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ $htmllang = str_replace("_","-",Config::get('lang')); $web_path = Config::get('web_path'); ?> |