00001 <?php 00002 // This file is part of the Savane project 00003 // <http://gna.org/projects/savane/> 00004 // 00005 // $Id: deleted.php 5187 2005-12-01 16:22:29Z yeupou $ 00006 // 00007 // 00008 // 00009 // Copyright 1999-2000 (c) The SourceForge Crew 00010 // 00011 // 00012 // Copyright (C) 2000, 2001, 2002 Free Software Foundation 00013 // 00014 // The Savane project is free software; you can redistribute it and/or 00015 // modify it under the terms of the GNU General Public License 00016 // as published by the Free Software Foundation; either version 2 00017 // of the License, or (at your option) any later version. 00018 // 00019 // The Savane project is distributed in the hope that it will be useful, 00020 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 // GNU General Public License for more details. 00023 // 00024 // You should have received a copy of the GNU General Public License 00025 // along with the Savane project; if not, write to the Free Software 00026 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00027 // 00028 // 00029 // 00030 // 00031 00032 require "../include/pre.php"; 00033 $HTML->header(array('title'=>_("Deleted Account"),'context'=>'account')); 00034 00035 00036 echo '<h3>'._("Deleted Account").'</h3>'; 00037 00038 echo '<p>'._("Your account has been deleted."); 00039 00040 $mail='<a href="mailto:'.$GLOBALS['sys_admin_list'].'@'.$GLOBALS['sys_lists_domain'].'">'.$GLOBALS['sys_admin_list'].'@'.$GLOBALS['sys_lists_domain'].'</a>'; 00041 00042 printf (_("If you have questions regarding your deletion, please email %s."),$mail); 00043 echo _("Inquiries through other channels will be directed to this address.").'</p>'; 00044 00045 $HTML->footer(array()); 00046 00047 ?>
1.4.4