You've already forked joomla_test
							
							
		
			
				
	
	
		
			20 lines
		
	
	
		
			642 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			642 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_config
 | |
|  *
 | |
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
 | |
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt
 | |
|  */
 | |
| 
 | |
| defined('_JEXEC') or die;
 | |
| 
 | |
| // Access checks are done internally because of different requirements for the two controllers.
 | |
| 
 | |
| // Tell the browser not to cache this page.
 | |
| JResponse::setHeader('Expires', 'Mon, 26 Jul 1997 05:00:00 GMT', true);
 | |
| 
 | |
| $controller = JControllerLegacy::getInstance('Config');
 | |
| $controller->execute(JFactory::getApplication()->input->get('task'));
 | |
| $controller->redirect();
 | 
