HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/iestorre/informatica/administrator/components/com_akeeba/views/buadmin/tmpl/comment.php
<?php
/**
 * @package AkeebaBackup
 * @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos
 * @license GNU General Public License version 3, or later
 * @since 1.3
 */

// Protect from unauthorized access
defined('_JEXEC') or die();

$editor = JFactory::getEditor();
$getText = $editor->getContent('comment');

?>
<form name="adminForm" id="adminForm" action="index.php" method="post" class="form-horizontal">
	<input type="hidden" name="option" value="com_akeeba" />
	<input type="hidden" name="task" value="" />
	<input type="hidden" name="view" value="buadmin" />
	<input type="hidden" name="id" value="<?php echo $this->record['id'] ?>" />
	<input type="hidden" name="<?php echo JFactory::getSession()->getFormToken()?>" value="1" />

	<div class="control-group">
		<label class="control-label" for="description">
			<?php echo JText::_('STATS_LABEL_DESCRIPTION'); ?>
		</label>
		<div class="controls">
			<input type="text" name="description" maxlength="255" size="50"
				value="<?php echo $this->record['description'] ?>" class="input-xxlarge" />
		</div>
	</div>
	<div class="control-group">
		<label class="control-label" for="comment">
			<?php echo JText::_('STATS_LABEL_DESCRIPTION'); ?>
		</label>
		<div class="controls">
			<?php echo $editor->display( 'comment',  $this->record['comment'], '550', '400', '60', '20', array() ) ; ?>
		</div>
	</div>
</form>