Changes

no edit summary
Line 16: Line 16:     
'''Detailed Changelog''':
 
'''Detailed Changelog''':
<pre>***** ChangeLog for 4.0.0 compared to 3.9.* *****
+
<div style="white-space: pre;">
 +
 
 +
***** ChangeLog for 4.0.0 compared to 3.9.* *****
 +
 
 
For users:
 
For users:
   Line 159: Line 162:  
- Method select_type_comptes_financiers() has been renamed into selectTypeOfBankAccount()  
 
- Method select_type_comptes_financiers() has been renamed into selectTypeOfBankAccount()  
 
- Property ->client that was deprecated 6 years ago, is replaced in all core code with ->thirdparty.
 
- Property ->client that was deprecated 6 years ago, is replaced in all core code with ->thirdparty.
- File '/core/tpl/document_actions_pre_headers.tpl.php' were renamed into '/core/actions_linkedfiles.inc.php'.
+
- File '/core/tpl/document_actions_pre_headers.tpl.php' were renamed into '/core/actions_linkedfiles.inc.php'. So if you included it into your module, change your code like this to be compatible with all version:  
So if you included it into your module, change your code like this to be compatible with all version:
   
   $res=@include_once DOL_DOCUMENT_ROOT . '/core/actions_linkedfiles.inc.php';
 
   $res=@include_once DOL_DOCUMENT_ROOT . '/core/actions_linkedfiles.inc.php';
 
   if (! $res) include_once DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_pre_headers.tpl.php';
 
   if (! $res) include_once DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_pre_headers.tpl.php';
 
</pre>
 
</pre>