0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.2-0
/
standard
/
htdocs
/
components
/
com_newsfeeds
/
[
Home
]
File: newsfeeds.php
<?php /** * version $Id: newsfeeds.php 21518 2011-06-10 21:38:12Z chdemko $ * @package Joomla.Site * @subpackage com_newsfeeds * @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; // Require the com_content helper library jimport('joomla.application.component.controller'); require_once JPATH_COMPONENT.'/helpers/route.php'; JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/tables'); $controller = JController::getInstance('Newsfeeds'); $controller->execute(JRequest::getCmd('task')); $controller->redirect();