In class HTML2PDF in line 2459 a notice is thrown if the array key "type" is not set. current: $first = $param['type'] == 'first'; solution: $first = isset($param['type']) && $param['type'] == 'first'; greetz, nik
In class HTML2PDF in line 2459 a notice is thrown if the array key "type" is not set.
current: $first = $param['type'] == 'first';
solution: $first = isset($param['type']) && $param['type'] == 'first';
greetz,
nik