Files @ 872091eca53c
Branch filter:

Location: hot67beta/administrator/components/com_installer/views/default/tmpl/default_message.php

ethanzonca@localhost.localdomain
init header with no marg
<?php
	$state			= &$this->get('State');
	$message1		= $state->get('message');
	$message2		= $state->get('extension.message');
?>
<table class="adminform">
	<tbody>
		<?php if($message1) : ?>
		<tr>
			<th><?php echo JText::_($message1) ?></th>
		</tr>
		<?php endif; ?>
		<?php if($message2) : ?>
		<tr>
			<td><?php echo $message2; ?></td>
		</tr>
		<?php endif; ?>
	</tbody>
</table>