Skip to content

Commit

Permalink
Fix #118
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
tsmr committed Nov 5, 2022
1 parent f521bdc commit b4e220a
Show file tree
Hide file tree
Showing 17 changed files with 4,061 additions and 3,799 deletions.
24 changes: 14 additions & 10 deletions front/import.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,25 @@
--------------------------------------------------------------------------
*/

include ('../../../inc/includes.php');
include('../../../inc/includes.php');


Html::header(PluginManufacturersimportsPreImport::getTypeName(), '',
"tools", "pluginmanufacturersimportsmenu");
Html::header(
PluginManufacturersimportsPreImport::getTypeName(),
'',
"tools",
"pluginmanufacturersimportsmenu"
);

$preimport = new PluginManufacturersimportsPreImport();
if ($preimport->canView() || Session::haveRight("config", UPDATE)) {
$values = $_GET;
if (isset($_POST["typechoice"])) {
$values = $_POST;
}
PluginManufacturersimportsPreImport::searchForm($values);
PluginManufacturersimportsPreImport::seePreImport($values);
$values = $_GET;
if (isset($_POST["typechoice"])) {
$values = $_POST;
}
PluginManufacturersimportsPreImport::searchForm($values);
PluginManufacturersimportsPreImport::seePreImport($values);
} else {
Html::displayRightError();
Html::displayRightError();
}
Html::footer();
393 changes: 195 additions & 198 deletions hook.php

Large diffs are not rendered by default.

Loading

0 comments on commit b4e220a

Please sign in to comment.