0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.3-0
/
standard
/
htdocs
/
components
/
com_content
/
[
Home
]
File: content.php
<?php /** * @version $Id: content.php 20196 2011-01-09 02:40:25Z ian $ * @package Joomla.Site * @subpackage com_content * @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; // Include dependancies jimport('joomla.application.component.controller'); require_once JPATH_COMPONENT.'/helpers/route.php'; require_once JPATH_COMPONENT.'/helpers/query.php'; $controller = JController::getInstance('Content'); $controller->execute(JRequest::getCmd('task')); $controller->redirect();