mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-03-23 15:39:38 +01:00
Merge pull request #58 from westhouseit/patch-1
Fix for Notice -> Undefined index: F0
This commit is contained in:
commit
0d61d43a1f
@ -21513,7 +21513,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
|
||||
} else {
|
||||
// placemark to be replaced with the correct number
|
||||
$pagenum = '{#'.($outline['p']).'}';
|
||||
if ($templates['F'.$outline['l']]) {
|
||||
if (isset($templates['F'.$outline['l']]) && $templates['F'.$outline['l']]) {
|
||||
$pagenum = '{'.$pagenum.'}';
|
||||
}
|
||||
$maxpage = max($maxpage, $outline['p']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user