Skip to content

Commit

Permalink
Alpha order imports in installer plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Oct 16, 2018
1 parent e37a3c7 commit d987034
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/installer/folderinstaller/folderinstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
defined('_JEXEC') or die;

use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Plugin\PluginHelper;

/**
* FolderInstaller Plugin.
Expand Down
2 changes: 1 addition & 1 deletion plugins/installer/packageinstaller/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Filesystem\FilesystemHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Filesystem\FilesystemHelper;

$token = Session::getFormToken();
$return = Factory::getApplication()->input->getBase64('return');
Expand Down
2 changes: 1 addition & 1 deletion plugins/installer/urlinstaller/urlinstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
*/
defined('_JEXEC') or die;

use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\CMS\Language\Text;

/**
* UrlFolderInstaller Plugin.
Expand Down

0 comments on commit d987034

Please sign in to comment.