OwlCyberSecurity - MANAGER
Edit File: default.php
<?php /** * @package AdminTools * @copyright 2010-2017 Akeeba Ltd / Nicholas K. Dionysopoulos * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\AdminTools\Admin\View\FixPermissions\Html */ defined('_JEXEC') or die; JHtml::_('behavior.modal'); ?> <?php if ($this->more): ?> <h1><?php echo \JText::_('COM_ADMINTOOLS_LBL_CONFIGUREFIXPERMISSIONS_INPROGRESS'); ?></h1> <?php else: ?> <h1><?php echo \JText::_('COM_ADMINTOOLS_LBL_CONFIGUREFIXPERMISSIONS_DONE'); ?></h1> <?php endif; ?> <div class="progress progress-striped active"> <div class="bar" style="width: <?php echo $this->percentage ?>%"></div> </div> <form action="index.php" name="adminForm" id="adminForm" method="get"> <input type="hidden" name="option" value="com_admintools"/> <input type="hidden" name="view" value="FixPermissions"/> <input type="hidden" name="task" value="run"/> <input type="hidden" name="tmpl" value="component"/> </form> <?php if (!$this->more): ?> <div class="alert alert-info" id="admintools-fixpermissions-autoclose"> <p><?php echo \JText::_('COM_ADMINTOOLS_LBL_COMMON_AUTOCLOSEIN3S'); ?></p> </div> <?php endif; ?>