После обновления Joomla вот что пишет: Fatal error: Class 'JParameter' not found in /home/astraea/astraea.com.ua/www/templates/political/html/com_content/article/default.php on line 16 В чем проблема помогите пожалуйста. Текст файла default.php: <?php /** * @version $Id: default.php 21518 2011-06-10 21:38:12Z chdemko $ * @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; jimport('joomla.filesystem.file'); $template = JFactory::getApplication()->getTemplate(true); jimport('joomla.html.parameter'); $tparams = new JParameter(JFile::read(JPATH_BASE.'/templates/'.$template->template.'/params_'.$template->id.'.ini')); $contentOverRides = $tparams->get("contentOverRides"); if($contentOverRides == "on") { include 'myblog.php'; } else { include 'normal.php'; }