diff --git a/htdocs/admin/tools/dolibarr_export.php b/htdocs/admin/tools/dolibarr_export.php
index bae4ec803b6..95fc1c3e7dd 100644
--- a/htdocs/admin/tools/dolibarr_export.php
+++ b/htdocs/admin/tools/dolibarr_export.php
@@ -61,6 +61,8 @@ if ($action == 'delete')
$form=new Form($db);
$formfile = new FormFile($db);
+$label=getStaticMember($db, 'label');
+
$help_url='EN:Backups|FR:Sauvegardes|ES:Copias_de_seguridad';
llxHeader('','',$help_url);
@@ -75,7 +77,6 @@ jQuery(document).ready(function() {
}
hideoptions();
-
jQuery("#radio_dump_mysql").click(function() {
hideoptions();
jQuery("#mysql_options").show();
@@ -94,6 +95,11 @@ jQuery(document).ready(function() {
jQuery("#checkbox_dump_disable-add-locks").attr('checked',true);
};
});
+
+
});
diff --git a/htdocs/admin/tools/dolibarr_import.php b/htdocs/admin/tools/dolibarr_import.php
index 99e0d8f0ecd..b3f5ac05670 100644
--- a/htdocs/admin/tools/dolibarr_import.php
+++ b/htdocs/admin/tools/dolibarr_import.php
@@ -33,6 +33,8 @@ if (! $user->admin) accessforbidden();
* View
*/
+$label=getStaticMember($db, 'label');
+
$help_url='EN:Restores|FR:Restaurations|ES:Restauraciones';
llxHeader('','',$help_url);
@@ -48,6 +50,10 @@ jQuery(document).ready(function() {
jQuery("#radio_dump_postgresql").click(function() {
jQuery("#postgresql_options").show();
});
+
});
trans("RestoreDesc",DOL_DATA_ROOT).'
';
print $langs->trans("RestoreDesc2",DOL_DATA_ROOT).'
';
print $langs->trans("RestoreDesc3",DOL_DATA_ROOT).'
';
-$label=getStaticMember($db, 'label');
-
?>