0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.2-0
/
standard
/
htdocs
/
components
/
com_contact
/
[
Home
]
File: contact.php
<?php /** * @version $Id: contact.php 21097 2011-04-07 15:38:03Z dextercowley $ * @package Joomla.Site * @subpackage com_contact * @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'); require_once JPATH_COMPONENT.'/helpers/route.php'; $controller = JController::getInstance('Contact'); $controller->execute(JRequest::getCmd('task')); $controller->redirect();