From ce801e77ddde8e0a2f50fdd43798d306320cf4ae Mon Sep 17 00:00:00 2001 From: mpagano Date: Tue, 17 Jun 2014 12:11:30 -0300 Subject: [PATCH] Fecha de Hasta en buscador del Calentario de Eventos configurable --- apps/frontend/modules/event/actions/actions.class.php | 2 +- data/configuration_names.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/modules/event/actions/actions.class.php b/apps/frontend/modules/event/actions/actions.class.php index 2cd929f..513a9a5 100644 --- a/apps/frontend/modules/event/actions/actions.class.php +++ b/apps/frontend/modules/event/actions/actions.class.php @@ -59,7 +59,7 @@ public function executeGetCalendar() protected function getDefaultSearchParameters() { - $to = CmsConfiguration::get('check_use_default_search_to_tomorrow',true)? date('d/m/Y', strtotime('tomorrow')):''; + $to = CmsConfiguration::get('days_to_use_in_default_search',true)? date('d/m/Y', strtotime('+'.CmsConfiguration::get('days_to_use_in_default_search',true).' days')):''; return array_merge(array( 'title' => null, 'event_type' => null, diff --git a/data/configuration_names.yml b/data/configuration_names.yml index 648da3b..e6277e3 100644 --- a/data/configuration_names.yml +++ b/data/configuration_names.yml @@ -72,7 +72,7 @@ names: check_open_calendar_today: Mostrar calendario desplegado en el día actual max_events: Número de eventos a mostrar inicialmente en el Slotlet Calendario check_show_events_calendar_in_slotlet: Mostrar calendario en los slotlet de Eventos - check_use_default_search_to_tomorrow: Utilizar la fecha de mañana por defecto para el Hasta en la busqueda de eventos + days_to_use_in_default_search: Cantidad de días a partir de hoy que se va a utilizar como fecha por defecto para el Hasta en la búsqueda de eventos Formularios: check_send_form_by_mail: Enviar formularios por mail