<?php
/**
 *
 * @author 		SDIC SA
 * @package 	Sitemap
 * @version 	2.0
 * @copyright	Copyright (C) 2015 SDIC SA
 * @license		GNU GPLv2
 * @link     	https://www.sdic.ch
 *
 */
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
 
// import joomla controller library
jimport('joomla.application.component.controller');
 
// Get an instance of the controller prefixed by Site Map component
$controller = JControllerLegacy::getInstance('SiteMap');
 
// Perform the Request task
$controller->execute(JFactory::getApplication()->input->get('task'));
 
// Redirect if set by the controller
$controller->redirect();


