<?
/*
PTK - DFLabs
Copyright (C) 2008 - DFLabs srl - All rights reserved
hide@address.com
*/
include("check_session.php");
include("sanitize.php");
$test = sanitize(RemoveXSS($_GET['listall']),PARANOID);
if ($test != "true" && $test != "false"){
$_SESSION['listall'] = false;
}else{
$_SESSION['listall'] = preg_replace("/[^a-z]/", "", $_GET['listall']);
}
?>