';
diff --git a/htdocs/compta/prelevement/stats.php b/htdocs/compta/prelevement/stats.php
index c3667f8b69f..4d81b164e60 100644
--- a/htdocs/compta/prelevement/stats.php
+++ b/htdocs/compta/prelevement/stats.php
@@ -73,7 +73,7 @@ if ($resql)
*/
print ' ';
-print_titre($langs->trans("WithdrawStatistics"));
+print load_fiche_titre($langs->trans("WithdrawStatistics"));
$ligne=new LignePrelevement($db,$user);
@@ -143,7 +143,7 @@ else
*
*/
print ' ';
-print_titre($langs->trans("WithdrawRejectStatistics"));
+print load_fiche_titre($langs->trans("WithdrawRejectStatistics"));
// Define total and nbtotal
diff --git a/htdocs/compta/tva/clients.php b/htdocs/compta/tva/clients.php
index 0625dd4978d..b2a2d6b2638 100644
--- a/htdocs/compta/tva/clients.php
+++ b/htdocs/compta/tva/clients.php
@@ -227,7 +227,7 @@ $vatsup=$langs->trans("VATPaid");
// VAT Received
//print " ";
-//print_titre($vatcust);
+//print load_fiche_titre($vatcust);
print "";
print "";
@@ -306,7 +306,7 @@ if (is_array($coll_list)) {
// VAT Paid
//print " ";
-//print_titre($vatsup);
+//print load_fiche_titre($vatsup);
//print "";
print "";
diff --git a/htdocs/compta/tva/index.php b/htdocs/compta/tva/index.php
index c84c7d2b633..26e66d66fbe 100644
--- a/htdocs/compta/tva/index.php
+++ b/htdocs/compta/tva/index.php
@@ -124,12 +124,12 @@ print ' ';
print '';
print '| ';
-print_titre($langs->trans("VATSummary"));
+print load_fiche_titre($langs->trans("VATSummary"));
// The report mode is the one defined by defaut in tax module setup
//print $modetax;
//print '('.$langs->trans("SeeVATReportInInputOutputMode",'','').')';
print ' | ';
-print_titre($langs->trans("VATPaid"));
+print load_fiche_titre($langs->trans("VATPaid"));
print ' | ';
print '';
diff --git a/htdocs/compta/ventilation/fournisseur/card.php b/htdocs/compta/ventilation/fournisseur/card.php
index d62694512fc..9c69b613697 100644
--- a/htdocs/compta/ventilation/fournisseur/card.php
+++ b/htdocs/compta/ventilation/fournisseur/card.php
@@ -101,7 +101,7 @@ if($_GET["id"])
}
- print_titre("Ventilation");
+ print load_fiche_titre("Ventilation");
print '';
print '| Facture | ';
diff --git a/htdocs/contact/ldap.php b/htdocs/contact/ldap.php
index 187dea70def..9a8fde8e14f 100644
--- a/htdocs/contact/ldap.php
+++ b/htdocs/contact/ldap.php
@@ -156,7 +156,7 @@ if (! empty($conf->global->LDAP_CONTACT_ACTIVE) && $conf->global->LDAP_CONTACT_A
// Affichage attributs LDAP
-print_titre($langs->trans("LDAPInformationsForThisContact"));
+print load_fiche_titre($langs->trans("LDAPInformationsForThisContact"));
print '';
diff --git a/htdocs/contrat/admin/contract_extrafields.php b/htdocs/contrat/admin/contract_extrafields.php
index 29e060551de..28b00b3464f 100644
--- a/htdocs/contrat/admin/contract_extrafields.php
+++ b/htdocs/contrat/admin/contract_extrafields.php
@@ -97,7 +97,7 @@ if ($action != 'create' && $action != 'edit')
if ($action == 'create')
{
print " ";
- print_titre($langs->trans('NewAttribute'));
+ print load_fiche_titre($langs->trans('NewAttribute'));
require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_add.tpl.php';
}
@@ -110,7 +110,7 @@ if ($action == 'create')
if ($action == 'edit' && ! empty($attrname))
{
print " ";
- print_titre($langs->trans("FieldEdition", $attrname));
+ print load_fiche_titre($langs->trans("FieldEdition", $attrname));
require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_edit.tpl.php';
}
diff --git a/htdocs/contrat/admin/contractdet_extrafields.php b/htdocs/contrat/admin/contractdet_extrafields.php
index 283a400bc80..d34af10ea65 100644
--- a/htdocs/contrat/admin/contractdet_extrafields.php
+++ b/htdocs/contrat/admin/contractdet_extrafields.php
@@ -97,7 +97,7 @@ if ($action != 'create' && $action != 'edit')
if ($action == 'create')
{
print " ";
- print_titre($langs->trans('NewAttribute'));
+ print load_fiche_titre($langs->trans('NewAttribute'));
require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_add.tpl.php';
}
@@ -110,7 +110,7 @@ if ($action == 'create')
if ($action == 'edit' && ! empty($attrname))
{
print " ";
- print_titre($langs->trans("FieldEdition", $attrname));
+ print load_fiche_titre($langs->trans("FieldEdition", $attrname));
require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_edit.tpl.php';
}
diff --git a/htdocs/contrat/tpl/linkedobjectblock.tpl.php b/htdocs/contrat/tpl/linkedobjectblock.tpl.php
index 4daf5deef02..412d07cb726 100644
--- a/htdocs/contrat/tpl/linkedobjectblock.tpl.php
+++ b/htdocs/contrat/tpl/linkedobjectblock.tpl.php
@@ -26,7 +26,7 @@ $linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
$langs->load("contracts");
echo ' ';
-print_titre($langs->trans('RelatedContracts'));
+print load_fiche_titre($langs->trans('RelatedContracts'));
?>
diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php
index 59a418d73a2..69a21cc9be5 100644
--- a/htdocs/core/class/html.formfile.class.php
+++ b/htdocs/core/class/html.formfile.class.php
@@ -790,7 +790,7 @@ class FormFile
$param = (isset($object->id)?'&id='.$object->id:'').$param;
// Show list of existing files
- if (empty($useinecm)) print_titre($title?$title:$langs->trans("AttachedFiles"));
+ if (empty($useinecm)) print load_fiche_titre($title?$title:$langs->trans("AttachedFiles"));
if (empty($url)) $url=$_SERVER["PHP_SELF"];
print '';
print '';
@@ -951,7 +951,7 @@ class FormFile
dol_syslog(get_class($this).'::list_of_autoecmfiles upload_dir='.$upload_dir.' modulepart='.$modulepart);
// Show list of documents
- if (empty($useinecm)) print_titre($langs->trans("AttachedFiles"));
+ if (empty($useinecm)) print load_fiche_titre($langs->trans("AttachedFiles"));
if (empty($url)) $url=$_SERVER["PHP_SELF"];
print '';
print '';
@@ -1192,7 +1192,7 @@ class FormFile
$param .= (isset($object->id)?'&id=' . $object->id : '');
// Show list of associated links
- print_titre($langs->trans("LinkedFiles"));
+ print load_fiche_titre($langs->trans("LinkedFiles"));
print ' | |