dolibarr/dev/dolibarr_changes.txt

63 lines
1.6 KiB
Plaintext
Raw Normal View History

2008-04-17 02:16:07 +02:00
This file describe changes made on external library after beeing included
in Dolibarr root.
2011-07-06 15:01:36 +02:00
2009-10-25 18:57:23 +01:00
ALL:
----
Replace "& new" by "new"
2008-04-17 02:16:07 +02:00
2010-04-13 23:33:02 +02:00
NUSOAP:
-------
* In file nusoap.php, to avoid a warning,
Replace
if (isset($this->methodreturn) && ((get_class($this->methodreturn) == 'soap_fault') || (get_class($this->methodreturn) == 'nusoap_fault'))) {
By
if (! is_array($this->methodreturn) && isset($this->methodreturn) && ((get_class($this->methodreturn) == 'soap_fault') || (get_class($this->methodreturn) == 'nusoap_fault'))) {
2011-05-04 17:19:38 +02:00
* In file nusoap.php, to avoid a warning,
Replace call to serialize_val with no bugged value
2010-04-13 23:33:02 +02:00
2010-09-16 19:51:28 +02:00
TCPDF:
------
2013-06-17 22:10:44 +02:00
* Removed all fonts except
dejavusans* (used by greek, arab, persan, romanian, turkish),
freemono* (russian),
cid*+msungstdlight+stsongstdlight+uni2cid* (chinese),
helvetica* (all other languages),
zapfdingbats.php (for special chars like form checkboxes)
2013-06-08 16:29:59 +02:00
* Removed useless directories (examples, tools)
* Fix
// initialize subsetchars
$subsetchars = array();
into
// initialize subsetchars
$subsetchars = array_fill(0, 256, true);
2010-09-16 19:51:28 +02:00
JSGANTT:
--------
* Replace in function JSGantt.taskLink
var OpenWindow=window.open(pRef, "newwin", "height="+vHeight+",width="+vWidth);
with
// LDR To open in same window
//var OpenWindow=window.open(pRef, "newwin", "height="+vHeight+",width="+vWidth);
window.location.href=pRef
* Replace hard coded string with i18n["String"];
2013-12-30 12:35:32 +01:00
JCROP:
------
* Remove analytics tag into file index.html
2014-01-20 02:21:30 +01:00
JQUERYFILETREE:
---------------
* Remove directory htdocs/includes/jquery/plugins/jqueryFileTree/connectors