Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-03-08 10:09:49 +0400
committermattab <matthieu.aubry@gmail.com>2014-03-08 10:09:49 +0400
commit8e48e5a1243bd0060cf907ab24b033f2a6654193 (patch)
treea027a51f208d448c41af3de689b195ff843ebbda /libs
parent4ec3413635f43d552b8d50944615533cfe341f8f (diff)
Silent fail to prevent bug?
http://forum.piwik.org/read.php?2,112675
Diffstat (limited to 'libs')
-rw-r--r--libs/tcpdf/tcpdf.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/tcpdf/tcpdf.php b/libs/tcpdf/tcpdf.php
index 44505e79a6..20fdee35a1 100644
--- a/libs/tcpdf/tcpdf.php
+++ b/libs/tcpdf/tcpdf.php
@@ -7109,7 +7109,7 @@ class TCPDF {
$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;