| Current Path : /home/sunflowe/www2/vacancesfloride/administrator/components/com_installer/controllers/ |
| Current File : /home/sunflowe/www2/vacancesfloride/administrator/components/com_installer/controllers/database.php |
<?php
/**
* @package Joomla.Administrator
* @subpackage com_installer
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License, see LICENSE.php
*/
defined('_JEXEC') or die;
/**
* @package Joomla.Administrator
* @subpackage com_installer
*/
class InstallerControllerDatabase extends JControllerLegacy
{
/**
* Tries to fix missing database updates
*
* @since 2.5
*/
function fix()
{
$model = $this->getModel('database');
$model->fix();
$this->setRedirect(JRoute::_('index.php?option=com_installer&view=database', false));
}
}