diff --git a/htdocs/accountancy/admin/index.php b/htdocs/accountancy/admin/index.php
index e11355b1f50..7f4ce79e165 100644
--- a/htdocs/accountancy/admin/index.php
+++ b/htdocs/accountancy/admin/index.php
@@ -82,20 +82,6 @@ if ($action == 'update') {
}
}
-// TO DO Mutualize code for yes/no constants
-if ($action == 'setdisablefaq') {
- $setdisablefaq = GETPOST('value', 'int');
- $res = dolibarr_set_const($db, "ACCOUNTING_DISABLE_FAQ", $setdisablefaq, 'yesno', 0, '', $conf->entity);
- if (! $res > 0)
- $error ++;
-
- if (! $error) {
- setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
- } else {
- setEventMessages($langs->trans("Error"), null, 'mesgs');
- }
-}
-
if ($action == 'setlistsorttodo') {
$setlistsorttodo = GETPOST('value', 'int');
$res = dolibarr_set_const($db, "ACCOUNTING_LIST_SORT_VENTILATION_TODO", $setlistsorttodo, 'yesno', 0, '', $conf->entity);
@@ -225,20 +211,7 @@ if (! empty($user->admin))
{
// TO DO Mutualize code for yes/no constants
print '
';
- print '| ' . $langs->trans("ACCOUNTING_DISABLE_FAQ") . ' | ';
- if (! empty($conf->global->ACCOUNTING_DISABLE_FAQ)) {
- print '';
- print img_picto($langs->trans("Activated"), 'switch_on');
- print ' | ';
- } else {
- print '';
- print img_picto($langs->trans("Disabled"), 'switch_off');
- print ' | ';
- }
- print '
';
-
- print '';
- print '| ' . $langs->trans("ACCOUNTING_LIST_SORT_VENTILATION_TODO") . ' | ';
+ print '' . $langs->trans("ACCOUNTING_LIST_SORT_VENTILATION_TODO") . ' | ';
if (! empty($conf->global->ACCOUNTING_LIST_SORT_VENTILATION_TODO)) {
print '';
print img_picto($langs->trans("Activated"), 'switch_on');
diff --git a/htdocs/accountancy/index.php b/htdocs/accountancy/index.php
index d3ea4ccfb24..e5189a11540 100644
--- a/htdocs/accountancy/index.php
+++ b/htdocs/accountancy/index.php
@@ -64,7 +64,7 @@ if ($conf->accounting->enabled)
{
$resultboxes=FormOther::getBoxesArea($user, "1"); // Load $resultboxes (selectboxlist + boxactivated + boxlista + boxlistb)
- print load_fiche_titre($langs->trans("AccountancyArea"), $resultboxes['selectboxlist'], 'title_accountancy');
+ print load_fiche_titre($langs->trans("AccountancyArea"), $resultboxes['selectboxlist'], 'accountancy');
// FAQ
if (empty($conf->global->ACCOUNTING_DISABLE_FAQ)) {
diff --git a/htdocs/langs/en_US/accountancy.lang b/htdocs/langs/en_US/accountancy.lang
index ce056b1f981..38b0798d47d 100644
--- a/htdocs/langs/en_US/accountancy.lang
+++ b/htdocs/langs/en_US/accountancy.lang
@@ -134,7 +134,6 @@ NotVentilatedinAccount=Not bound to the accounting account
XLineSuccessfullyBinded=%s products/services successfully bound to an accounting account
XLineFailedToBeBinded=%s products/services were not bound to any accounting account
-ACCOUNTING_DISABLE_FAQ=Disable FAQ on accountancy area
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended: 50)
ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the page "Binding to do" by the most recent elements
ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the page "Binding done" by the most recent elements
|