post is now in the lib too. have to work on the actions now.
[banana.git] / post.php
CommitLineData
90962c86 1<?php
9abb6c51 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
2dbc0167 10require_once("include/banana.inc.php");
0d407ce1 11require_once("include/header.inc.php");
2dbc0167 12
ab192563 13if (isset($_REQUEST['group'])) {
2dbc0167 14 $group = htmlentities(strtolower($_REQUEST['group']));
ab192563 15}
90962c86 16
1248ebac 17$id = isset($_REQUEST['id']) ? intval($_REQUEST['id']) : -1;
90962c86 18
1248ebac 19echo $banana->action_newFup($group, $id);
90962c86 20
0d407ce1 21require_once("include/footer.inc.php");
90962c86 22?>