31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-29 03:50:46 +00:00

space removal

This commit is contained in:
Matt Meyrick 2020-04-09 08:13:09 +01:00
parent 7a17be2df9
commit 49b36540a7

View File

@ -52,6 +52,7 @@ class Com_PatchtesterInstallerScript extends InstallerScript
public function postflight($type, $parent)
{
$this->removeFiles();
if ($type == 'install')
{
$language = JFactory::getLanguage();
@ -62,7 +63,7 @@ class Com_PatchtesterInstallerScript extends InstallerScript
<p><?php echo Text::_('COM_PATCHTESTER_XML_DESCRIPTION'); ?></p>
<p><?php echo Text::_('COM_PATCHTESTER_GOTO_PATCHTESTER'); ?></a></p>
<p><?php echo Text::_('COM_PATCHTESTER_GOTO_PATCHTESTER_OPTIONS'); ?></a></p>
<?php
<?php
}
if ($type == 'uninstall')
@ -73,7 +74,7 @@ class Com_PatchtesterInstallerScript extends InstallerScript
?>
<h1><?php echo Text::_('COM_PATCHTESTER'); ?></h1>
<p><?php echo Text::_('COM_PATCHTESTER_UNINSTALL_THANK_YOU'); ?></p>
<?php
<?php
}
}
}