33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-02-02 11:58:26 +00:00

23 lines
628 B
PHP
Raw Normal View History

2011-10-11 09:02:57 -04:00
<?php
/**
2012-06-12 13:42:45 -05:00
* @package PatchTester
* @copyright Copyright (C) 2011 Ian MacLennan, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
2011-10-11 09:02:57 -04:00
*/
// no direct access
defined('_JEXEC') or die;
// Access check.
2012-06-12 13:42:45 -05:00
if (!JFactory::getUser()->authorise('core.manage', 'com_patchtester'))
{
2011-10-11 09:02:57 -04:00
return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
}
2013-07-11 20:49:58 -05:00
JLoader::registerPrefix('PT', __DIR__.'/helpers');
2012-09-08 20:53:44 -05:00
$controller = JControllerLegacy::getInstance('PatchTester');
2013-07-11 20:49:58 -05:00
$controller->execute(JFactory::getApplication()->input->getCmd('task'));
2011-10-11 09:02:57 -04:00
$controller->redirect();