mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-03-16 22:33:34 +00:00
Fixed 2153 -Images in PDFs not showing
This commit is contained in:
parent
7895179a58
commit
d1279cad9c
1 changed files with 1 additions and 1 deletions
|
@ -9667,7 +9667,7 @@ function _getImage(&$file, $firsttime=true, $allowvector=true, $orig_srcpath=fal
|
|||
// firsttime i.e. whether to add to this->images - use false when calling iteratively
|
||||
// Image Data passed directly as var:varname
|
||||
if (preg_match('/var:\s*(.*)/',$file, $v)) {
|
||||
$data = $this->$v[1];
|
||||
$data = $this->{$v[1]};
|
||||
$file = md5($data);
|
||||
}
|
||||
// mPDF 5.5.13
|
||||
|
|
Loading…
Reference in a new issue