<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL of management of classifieds ads developed by Script PAG
///Script PAG all rights reserved. Use under license. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////

############################################################

require_once('fns_calendar.php');
	
///////////////////////////////////
//Delete calendar date
//////////////////////////////////

$error = 0;
		
if(isset($_POST['session_id']))
{
	$session_id = $_POST['session_id'];
	
	if(isset($_SESSION["cal_period"]))
	{
		foreach($_SESSION["cal_period"] as $key=>$data)
		{
			if($key == $_POST['session_id'])
			{
				unset($_SESSION["cal_period"][$key]);
				$error = 1;
			}				
		}			
	}
}

echo $error;

