Skip to content

Commit

Permalink
Complete #12556
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Dec 1, 2019
1 parent 9754158 commit 590d2cd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dev/dolibarr_changes.txt
Expand Up @@ -67,6 +67,21 @@ with
}
}

* In tecnickcom/tcpdf/include/tcpdf_static, in function fopenLocal, replace

if (strpos($filename, '://') === false) {

with

if (strpos($filename, '//') === 0)
{
// Share folder on a (windows) server
// e.g.: "//[MyServerName]/[MySharedFolder]/"
//
// nothing to change
}
elseif (strpos($filename, '://') === false)

* To avoid to have QRcode changed because generated with a random mask, replace
define('QR_FIND_FROM_RANDOM', 2);
with
Expand Down

0 comments on commit 590d2cd

Please sign in to comment.