*/
include("session.php");
require_once("class_functions.php");
require_once("class_db.php");
if(file_exists($_SESSION['config']['lang'].'.php'))
{
include($_SESSION['config']['lang'].'.php');
}
else
{
$_SESSION['error'] = "Language file missing...
";
}
$func = new functions();
$db = new dbquery();
$db->connect();
$time = $db->get_session_time_expire();
//The Fileplan
if(isset($_REQUEST['fileplan_id']))
{
$fileplanId = addslashes($func->wash($_REQUEST['fileplan_id'], "no", _FILEPLAN));
}
else
{
$fileplanId = "";
}
//The folder
if(!isset($_GET['folder_id']) || empty($_GET['folder_id']))
{
$_SESSION['error'] = _SELECT_FOLDER_FIRST;
}
else
{
$s_id = addslashes($func->wash($_GET['folder_id'], "no", _THE_FOLDER));
}
//The action
$action = $_GET['action'];
?>