0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.3-0
/
standard
/
htdocs
/
components
/
com_search
/
[
Home
]
File: search.php
<?php /** * @version $Id: search.php 22338 2011-11-04 17:24:53Z github_bot $ * @package Joomla.Site * @subpackage com_search * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // no direct access defined('_JEXEC') or die; jimport('joomla.application.component.controller'); // Create the controller $controller = JController::getInstance('Search'); // Perform the Request task $controller->execute(JRequest::getCmd('task')); // Redirect if set by the controller $controller->redirect();