<?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 __DIR__.'/../all_fns.php';

pool::execute('beforestart');

///////////////////////////////////
//Display calendar option
//////////////////////////////////

$aff = 0;

if(isset($_POST['id_cat']) && $_POST['id_cat'] != 0)
{
	$cat = (int) $_POST['id_cat'];
	
	foreach($cache_cat as $v)
	{
		if($v['id_cat'] == $cat && $v['upload_doc'] == 1)
		$aff = 1;
	}
}

echo $aff;