1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

Additional exit statements

This commit is contained in:
e107steved 2007-12-29 20:34:37 +00:00
parent f2fb5109c3
commit 1991680e36
2 changed files with 6 additions and 5 deletions

View File

@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/phpmailer/mailout_process.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/phpmailer/mailout_process.php,v $
| $Revision: 1.6 $ | $Revision: 1.7 $
| $Date: 2007-12-22 14:49:28 $ | $Date: 2007-12-29 20:34:17 $
| $Author: e107steved $ | $Author: e107steved $
| |
| Modifications in hand to work with most recent mailout.php | Modifications in hand to work with most recent mailout.php
@ -29,7 +29,7 @@ To do:
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
require_once("../../class2.php"); require_once("../../class2.php");
if(!getperms("W")){ header("location:".e_BASE."index.php"); } if(!getperms("W")){ header("location:".e_BASE."index.php"); exit; }
include_lan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_mailout.php"); include_lan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_mailout.php");

View File

@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_plugins/calendar_menu/admin_config.php,v $ | $Source: /cvs_backup/e107_0.8/e107_plugins/calendar_menu/admin_config.php,v $
| $Revision: 1.4 $ | $Revision: 1.5 $
| $Date: 2007-12-15 21:46:20 $ | $Date: 2007-12-29 20:34:24 $
| $Author: e107steved $ | $Author: e107steved $
| |
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
@ -24,6 +24,7 @@ require_once(e_HANDLER."userclass_class.php");
if (!getperms("P")) if (!getperms("P"))
{ {
header("location:".e_BASE."index.php"); header("location:".e_BASE."index.php");
exit;
} }