shell bypass 403
<?php
//echo '<h4 class="filtro-titular">Precio</h4>';
echo $this->Form->create(false, array('url' => $this->Inmueble->getUrl($this->params->query), 'class' => 'form'));
echo '<div class="filtro-precio">';
echo $this->Form->input('precioDesde', array('label' => false, 'options' => $options['precio'], 'empty' => 'Desde', 'value' => (!empty($this->params->query['precio-desde'])) ? $this->params->query['precio-desde'] : null, 'div' => array('class' => 'div-select')));
echo $this->Form->input('precioHasta', array('label' => false, 'options' => $options['precio'], 'empty' => 'Hasta', 'value' => (!empty($this->params->query['precio-hasta'])) ? $this->params->query['precio-hasta'] : null, 'div' => array('class' => 'div-select')));
echo '</div>';
echo $this->Form->hidden('tipo', array('value' => 'precio'));
echo $this->Form->end();
?>