ignatz,
why are you using timelocal.pl to perform your date/time calculations? Anyways, the timelocal() function is defined in the Time::Local module. So you should try it with
use Time::Local;
instead of
require 'timelocal.pl';
Tell me if that helps.
|