ab792cb7dc9a35c4424467962e8efe7b7931076c
[banana.git] / post.php
1 <?php
2 /********************************************************************************
3 * post.php : posting page
4 * ----------
5 *
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
9
10 require_once("include/banana.inc.php");
11 require_once("include/header.inc.php");
12
13 if (isset($_REQUEST['group'])) {
14 $group = htmlentities(strtolower($_REQUEST['group']));
15 }
16
17 $id = isset($_REQUEST['id']) ? intval($_REQUEST['id']) : -1;
18
19 echo $banana->action_newFup($group, $id);
20
21 require_once("include/footer.inc.php");
22 ?>