diff --git a/htdocs/admin/debugbar.php b/htdocs/admin/debugbar.php
index 19a440520b1..3e878b9398b 100644
--- a/htdocs/admin/debugbar.php
+++ b/htdocs/admin/debugbar.php
@@ -90,7 +90,7 @@ print '';
print '
';
print '';
print '| '.$langs->trans("Parameter").' | '.$langs->trans("Value").' | ';
-print ' | ';
+print ' | ';
print "
\n";
print '| '.$langs->trans("DEBUGBAR_LOGS_LINES_NUMBER").' | ';
diff --git a/htdocs/admin/expensereport_rules.php b/htdocs/admin/expensereport_rules.php
index 0b12f8d3741..802cc939caa 100644
--- a/htdocs/admin/expensereport_rules.php
+++ b/htdocs/admin/expensereport_rules.php
@@ -319,7 +319,7 @@ foreach ($rules as $rule) {
echo ''.img_edit().' ';
echo ''.img_delete().'';
} else {
- echo ' ';
+ echo ' ';
echo ''.$langs->trans("Cancel").'';
}
echo '';
diff --git a/htdocs/bookmarks/card.php b/htdocs/bookmarks/card.php
index 839ce4c3f86..d725a659e08 100644
--- a/htdocs/bookmarks/card.php
+++ b/htdocs/bookmarks/card.php
@@ -186,10 +186,7 @@ if ($action == 'create') {
print dol_get_fiche_end();
- print '';
- print ' ';
- print '';
- print '
';
+ print $form->buttonsSaveCancel("CreateBookmark");
print '';
}
diff --git a/htdocs/comm/mailing/card.php b/htdocs/comm/mailing/card.php
index dbfbc84b69f..2ed56683c02 100644
--- a/htdocs/comm/mailing/card.php
+++ b/htdocs/comm/mailing/card.php
@@ -749,7 +749,7 @@ if ($action == 'create') {
print dol_get_fiche_end();
- print '';
+ print $form->buttonsSaveCancel("CreateMailing", '');
print '';
} else {
diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php
index 97c6735221f..3283957f8a2 100644
--- a/htdocs/comm/mailing/cibles.php
+++ b/htdocs/comm/mailing/cibles.php
@@ -424,7 +424,7 @@ if ($object->fetch($id) >= 0) {
print '';
if ($allowaddtarget) {
- print '';
+ print '';
} else {
print '';
//print $langs->trans("MailNoChangePossible");
diff --git a/htdocs/compta/prelevement/line.php b/htdocs/compta/prelevement/line.php
index 5aa7344eea5..bea351ac46c 100644
--- a/htdocs/compta/prelevement/line.php
+++ b/htdocs/compta/prelevement/line.php
@@ -222,7 +222,7 @@ if ($id) {
print '
';
//Confirm Button
- print '';
+ print '';
print '';
}
diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php
index 46159a52519..01bd1a13141 100644
--- a/htdocs/core/class/html.form.class.php
+++ b/htdocs/core/class/html.form.class.php
@@ -7874,6 +7874,11 @@ class Form
if (empty($conf->expedition->enabled)) {
continue; // Do not show if module disabled
}
+ } elseif ($objecttype == 'mo') {
+ $tplpath = 'mrp/mo';
+ if (empty($conf->mrp->enabled)) {
+ continue; // Do not show if module disabled
+ }
} elseif ($objecttype == 'ficheinter') {
$tplpath = 'fichinter';
if (empty($conf->ficheinter->enabled)) {
diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php
index 591fb5ed2d1..ca7e939fb6f 100644
--- a/htdocs/core/class/html.formfile.class.php
+++ b/htdocs/core/class/html.formfile.class.php
@@ -2033,8 +2033,8 @@ class FormFile
print ''.dol_print_date(dol_now(), "dayhour", "tzuser").' | ';
print ' | ';
print '';
- print '';
- print '';
+ print '';
+ print '';
print ' | ';
} else {
print '';
diff --git a/htdocs/core/class/html.formmail.class.php b/htdocs/core/class/html.formmail.class.php
index 04d4ad34e89..823e90fcac3 100644
--- a/htdocs/core/class/html.formmail.class.php
+++ b/htdocs/core/class/html.formmail.class.php
@@ -956,15 +956,14 @@ class FormMail extends Form
$out .= ''."\n";
if ($this->withform == 1 || $this->withform == -1) {
- $out .= '
';
- $out .= 'trans("SendMail").'"';
// Add a javascript test to avoid to forget to submit file before sending email
if ($this->withfile == 2 && $conf->use_javascript_ajax) {
$out .= ' onClick="if (document.mailform.addedfile.value != \'\') { alert(\''.dol_escape_js($langs->trans("FileWasNotUploaded")).'\'); return false; } else { return true; }"';
}
$out .= ' />';
if ($this->withcancel) {
- $out .= ' ';
$out .= '';
}
$out .= ' '."\n";
diff --git a/htdocs/fichinter/card.php b/htdocs/fichinter/card.php
index 9bf43a60378..31f42c9b0fa 100644
--- a/htdocs/fichinter/card.php
+++ b/htdocs/fichinter/card.php
@@ -1146,7 +1146,7 @@ if ($action == 'create') {
$morehtmlref .= '';
$morehtmlref .= '';
$morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
- $morehtmlref .= '';
+ $morehtmlref .= '';
$morehtmlref .= '';
} else {
$morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
|