diff --git a/htdocs/adherents/type.php b/htdocs/adherents/type.php
index 7ff9c3806a5..af65f32b510 100644
--- a/htdocs/adherents/type.php
+++ b/htdocs/adherents/type.php
@@ -398,10 +398,7 @@ if ($action == 'create') {
print dol_get_fiche_end();
- print '
';
- print '';
- print '';
- print '
';
+ print $form->buttonsSaveCancel();
print "\n";
}
diff --git a/htdocs/admin/clicktodial.php b/htdocs/admin/clicktodial.php
index 09ba880dd33..326e7028bbf 100644
--- a/htdocs/admin/clicktodial.php
+++ b/htdocs/admin/clicktodial.php
@@ -117,7 +117,7 @@ print '';
print '';
print '';
-print '
';
+print $form->buttonsSaveCancel("Modify", '');
print '
';
diff --git a/htdocs/admin/external_rss.php b/htdocs/admin/external_rss.php
index 71086096e4f..26ba4d40f58 100644
--- a/htdocs/admin/external_rss.php
+++ b/htdocs/admin/external_rss.php
@@ -180,6 +180,7 @@ if (GETPOST("delete")) {
/*
* View
*/
+$form = new Form($db);
llxHeader('', $langs->trans("ExternalRSSSetup"));
@@ -209,11 +210,9 @@ print 'http://news.google.com/news?ned=us&topic=h&output=rss http://www.d
print '';
print '';
-print '
';
-print '';
+print $form->buttonsSaveCancel("Add", '');
print '';
print '';
-print ' ';
print '';
diff --git a/htdocs/admin/knowledgemanagement.php b/htdocs/admin/knowledgemanagement.php
index b8434773f67..457303c9798 100644
--- a/htdocs/admin/knowledgemanagement.php
+++ b/htdocs/admin/knowledgemanagement.php
@@ -258,9 +258,7 @@ if ($action == 'edit') {
}
print '';
- print '
';
- print '';
- print ' ';
+ print $form->buttonsSaveCancel("Save", '');
print '';
print ' ';
diff --git a/htdocs/admin/mailing.php b/htdocs/admin/mailing.php
index 1b0df5843f3..b1a9efc8648 100644
--- a/htdocs/admin/mailing.php
+++ b/htdocs/admin/mailing.php
@@ -186,8 +186,7 @@ if (!empty($conf->use_javascript_ajax) && $conf->global->MAIN_FEATURES_LEVEL >=
print '';
-print ' ';
-print '';
+print $form->buttonsSaveCancel("Modify", '');
print '';
diff --git a/htdocs/admin/oauth.php b/htdocs/admin/oauth.php
index e2f123f627c..9bf5be2c294 100644
--- a/htdocs/admin/oauth.php
+++ b/htdocs/admin/oauth.php
@@ -150,7 +150,7 @@ print '';
print dol_get_fiche_end();
-print '';
+print $form->buttonsSaveCancel("Modify", '');
print '';
diff --git a/htdocs/admin/oauthlogintokens.php b/htdocs/admin/oauthlogintokens.php
index 998b6c39c0f..8697b400a2b 100644
--- a/htdocs/admin/oauthlogintokens.php
+++ b/htdocs/admin/oauthlogintokens.php
@@ -334,7 +334,7 @@ if ($mode == 'setup' && $user->admin) {
if (!empty($driver)) {
if ($submit_enabled) {
- print '';
+ print $form->buttonsSaveCancel("Modify", '');
}
}
diff --git a/htdocs/comm/remise.php b/htdocs/comm/remise.php
index bdf9b75998b..8b4d8943b45 100644
--- a/htdocs/comm/remise.php
+++ b/htdocs/comm/remise.php
@@ -189,13 +189,7 @@ if ($socid > 0) {
print dol_get_fiche_end();
- print '';
- print '';
- if (!empty($backtopage)) {
- print ' ';
- print '';
- }
- print ' ';
+ print $form->buttonsSaveCancel("Modify");
print "";
diff --git a/htdocs/delivery/card.php b/htdocs/delivery/card.php
index a845b7aff95..b8bd1896412 100644
--- a/htdocs/delivery/card.php
+++ b/htdocs/delivery/card.php
@@ -630,7 +630,7 @@ if ($action == 'create') { // Create. Seems to no be used
print dol_get_fiche_end();
//if ($object->statut == 0) // only if draft
- // print '';
+ // print $form->buttonsSaveCancel("Save", '');
print '';
|