in reply to Compilation Error

Looks like you're missing a couple of right curly brackets with your $order_ref hash ref:
td (escapeHTML ($order_ref->{customer_id)),
Should be:
td (escapeHTML ($order_ref->{customer_id})),
And here also:
td (escapeHTML ($order_ref->{tracking_number)),
Should be:
td (escapeHTML ($order_ref->{tracking_number})),
See if that does the trick.

-- vek --

Replies are listed 'Best First'.
Re: Re: Compilation Error
by b310 (Scribe) on Jun 02, 2003 at 17:41 UTC
    Hi,

    I included the missing curly brackets and that did not help the situation. Unfortunately, I am unable to get to the logs to find out what is the exact error.
      Hmm, looks like you'll need to fix this line also:
      $page .= table ({-border => 1, -align => "center"},
      Should probably be (untested):
      $page .= table ({-border => 1, -align => "center"});
      Remember, perl -c is your friend and will point out these types of errors.

      -- vek --