SUGGESTED FIX
I changed this method in PackageIndexFrameWriter.java
from:
/**
* Print the "-header" in bold format, at top of the page. There is
* actually no navigation bar for this page.
*/
protected void printNavigationBarHeader() {
if (Standard.configuration().header != null) {
printTableHeader();
fontSizeStyle("+1", "FrameTitleFont");
bold(Standard.configuration().header);
fontEnd();
printTableFooter();
}
}
to:
/**
* Print the "-header" in bold format, at top of the page. There is
* actually no navigation bar for this page.
*/
protected void printNavigationBarHeader() {
if (Standard.configuration().header != null) {
printTableHeader();
fontSizeStyle("+1", "FrameTitleFont");
bold(replaceDocRootDir(Standard.configuration().header));
//changed the above line
fontEnd();
printTableFooter();
}
}
after that, it works fine...
thanks
Timo
|