reduce PHP notices
This commit is contained in:
parent
331d4cdff2
commit
e352098f28
|
@ -238,8 +238,6 @@ function MultiCell($w,$h,$txt,$border=0,$align='J',$fill=0)
|
||||||
{
|
{
|
||||||
//Get next character
|
//Get next character
|
||||||
$c = $this->code2utf($cp[$i]);
|
$c = $this->code2utf($cp[$i]);
|
||||||
$charw = $cw[$cp[$i]];
|
|
||||||
|
|
||||||
if($c=="\n")
|
if($c=="\n")
|
||||||
{
|
{
|
||||||
//Explicit line break
|
//Explicit line break
|
||||||
|
@ -265,7 +263,9 @@ function MultiCell($w,$h,$txt,$border=0,$align='J',$fill=0)
|
||||||
$ls=$l;
|
$ls=$l;
|
||||||
$ns++;
|
$ns++;
|
||||||
}
|
}
|
||||||
$l+=$charw;
|
if (isset($cw[$cp[$i]])) {
|
||||||
|
$l += $cw[$cp[$i]];
|
||||||
|
}
|
||||||
|
|
||||||
if($l>$wmax)
|
if($l>$wmax)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue