Ed McLain <[EMAIL PROTECTED]> wrote:
> Now the one that is giving me hell is the:
>
> if ( /^$date $hour:$mf[$ms-$me]/ ) {
You're not using strict, are you? Unfortunately, $mf[$ms-$me]
is an element of @mf, and writing ${mf}[$ms-$me] won't save you
from the misinterpretation. One fix, since it's in a regex,
would be to write [$mf][$ms-$me] instead.
--
Keith C. Ivey <[EMAIL PROTECTED]>
Washington, DC
