Subject: | Content with refresh time of zero doesn't display the refresh/URL bits. |
Content with refresh time of zero doesn't display the refresh/URL bits.
If you try to use $object->Content with a zero refresh time, for making
the next buttons work in a directory for example, then if the refresh
time is exactly zero it doesn't display the refresh time and URL in the
header.
I believe I've resolved this to line 93 in IPPhone.pm, changing:
if ($options->{Refresh}) {
to
if (defined($options->{Refresh})) {
and I think that should cure it, it certainly seems to work here.
Thanks,
PN