From 3b356fc3668858cf12732b328945fda8de8f158a Mon Sep 17 00:00:00 2001
From: Anthony Berton <34568357+bb2a@users.noreply.github.com>
Date: Wed, 11 Aug 2021 16:20:41 +0200
Subject: [PATCH] params is duplicate
---
htdocs/admin/pdf_other.php | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/htdocs/admin/pdf_other.php b/htdocs/admin/pdf_other.php
index 3d9304ae6ed..2f935d82d1b 100644
--- a/htdocs/admin/pdf_other.php
+++ b/htdocs/admin/pdf_other.php
@@ -102,26 +102,6 @@ if ($conf->use_javascript_ajax) {
print $form->selectarray("MAIN_GENERATE_PROPOSALS_WITH_PICTURE", $arrval, $conf->global->MAIN_GENERATE_PROPOSALS_WITH_PICTURE);
}
print '';
-
-print '
| '.$langs->trans("PDF_NO_SENDER_FRAME");
-print ' | ';
-if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('PDF_NO_SENDER_FRAME');
-} else {
- $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
- print $form->selectarray("PDF_NO_SENDER_FRAME", $arrval, $conf->global->PDF_NO_SENDER_FRAME);
-}
-print ' |
';
-
-print '| '.$langs->trans("PDF_NO_RECIPENT_FRAME");
-print ' | ';
-if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('PDF_NO_RECIPENT_FRAME');
-} else {
- $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
- print $form->selectarray("PDF_NO_RECIPENT_FRAME", $arrval, $conf->global->PDF_NO_RECIPENT_FRAME);
-}
-print ' |
';
/*
print '| '.$langs->trans("MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING").' | ';
if ($conf->use_javascript_ajax) {
|