Closed (fixed)
Project:
HTML2Book
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Sep 2007 at 14:04 UTC
Updated:
11 Sep 2010 at 11:00 UTC
A book with many, many pages can overrun the $weight variable. This leads to pages suddenly not showing up in the final book. A quick workaround is to change line 159 from
$weight[$level]++; to
if ($weight[$level] <= 15)
$weight[$level]++;
Comments
Comment #1
karens commentedGood idea, fixing this in the D6 version. Yeah, I'm really really behind on this.