Revision 286
Added by stefan almost 19 years ago
save.php | ||
---|---|---|
1 | 1 |
<?php |
2 | 2 |
|
3 |
// $Id: save.php,v 1.4 2005/04/02 06:25:37 rdjurovich Exp $
|
|
3 |
// $Id$ |
|
4 | 4 |
|
5 | 5 |
/* |
6 | 6 |
|
... | ... | |
34 | 34 |
// Check if group group_id is a valid number and doesnt equal 1 |
35 | 35 |
if(!isset($_POST['group_id']) OR !is_numeric($_POST['group_id']) OR $_POST['group_id'] == 1) { |
36 | 36 |
header("Location: index.php"); |
37 |
exit(0); |
|
37 | 38 |
} else { |
38 | 39 |
$group_id = $_POST['group_id']; |
39 | 40 |
} |
Also available in: Unified diff
Added an exit call after every heading("Location:...") redirector to prevent unwanted execution of code.