Skip to content

Commit

Permalink
Silent fail to prevent bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
mattab committed Mar 8, 2014
1 parent 4ec3413 commit 8e48e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/tcpdf/tcpdf.php
Expand Up @@ -7109,7 +7109,7 @@ public function Image($file, $x='', $y='', $w=0, $h=0, $type='', $link='', $alig
$xkimg = $ximg * $this->k;
if (!$alt) {
// only non-alternative immages will be set
$this->_out(sprintf('q %F 0 0 %F %F %F cm /I%u Do Q', ($w * $this->k), ($h * $this->k), $xkimg, (($this->h - ($y + $h)) * $this->k), $info['i']));
$this->_out(sprintf('q %F 0 0 %F %F %F cm /I%u Do Q', ($w * $this->k), ($h * $this->k), $xkimg, (($this->h - ($y + $h)) * $this->k), @$info['i']));
}
if (!empty($border)) {
$bx = $this->x;
Expand Down

0 comments on commit 8e48e5a

Please sign in to comment.