OwlCyberSecurity - MANAGER
Edit File: sitemaps.php
<?php /** * Qlue Sitemap * * @author Jon Boutell * @package QMap * @license GNU/GPL * @version 1.0 * * This component gathers information from various Joomla Components and * compiles them into a sitemap, supporting both an HTML view and an XML * format for search engines. * */ defined('_JEXEC') or die('Restricted Access'); class SitemapControllerSitemaps extends JControllerAdmin { public function getModel($name = 'sitemap', $prefix = 'SitemapModel', $config = array('ignore_request' => true)) { $model = parent::getModel($name, $prefix, $config); return $model; } } ?>