View Single Post
 
Old Aug 01, 2001, 03:02 AM
DarkMoon DarkMoon is offline
Junior Member
 
Member Since: Aug 2001
Posts: 13
HI,

First of all thank you for this wonderfull piece of code, it will be a great help for me until I figure out how to parse the 180+mb of XML from Dmoz and store it into mysql.

Anyway I'm installing POD into a Slash based site running under mod_perl and such. Slash generates automatically SSI files for the header and footer which I would like to use, that way when I make a change I only have to do it in Slash and nowhere else.

POD however is brealing my tables so it looks really, really weird. I think I have tracked it down to line 213

it prints the table command at the beginning of the HTML and not where the header is supossed to end and thus braling the table.

OK, while writing this I discovered what the problem is...

LIne number: 219

return $pod_ph_text.$pod_header;

instructs the CGI proggy to print that Table command BEFORE the header!

it should read:

return $pod_header.$pod_ph_text;

I just posted this anyway, in case someone else has the same problem.

PS: if yer wanna take a look at the site: ITL's Open Directory

PS2: Also your credits will go under the "About" section, is that cool with you guys?