diff options
| author | Nick Palmer <nick@sluggardy.net> | 2007-06-14 21:20:27 +0000 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2007-06-14 21:20:27 +0000 |
| commit | e6660a1b646487d8bd024058b720761c4dabe508 (patch) | |
| tree | 21a35a7028449129478c6f808fcaf0f8d0e8a0a1 /edit.php | |
| parent | b96854ae8e1e18ba7d64cfe18e8eb76b1c71bece (diff) | |
| download | wiki-e6660a1b646487d8bd024058b720761c4dabe508.tar.gz wiki-e6660a1b646487d8bd024058b720761c4dabe508.tar.bz2 wiki-e6660a1b646487d8bd024058b720761c4dabe508.zip | |
Add die after header() call.
Diffstat (limited to 'edit.php')
| -rw-r--r-- | edit.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_wiki/edit.php,v 1.35 2007/06/01 15:16:49 squareing Exp $ + * $Header: /cvsroot/bitweaver/_bit_wiki/edit.php,v 1.36 2007/06/14 21:20:27 nickpalmer Exp $ * * Copyright( c ) 2004 bitweaver.org * Copyright( c ) 2003 tikwiki.org @@ -8,7 +8,7 @@ * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details * - * $Id: edit.php,v 1.35 2007/06/01 15:16:49 squareing Exp $ + * $Id: edit.php,v 1.36 2007/06/14 21:20:27 nickpalmer Exp $ * @package wiki * @subpackage functions */ @@ -400,6 +400,7 @@ if( isset( $_REQUEST["fCancel"] ) ) { } header( "Location: ".$gContent->getDisplayUrl() ); + die; } else { $formInfo = $_REQUEST; $formInfo['data'] = &$_REQUEST['edit']; |
