in reply to Re^2: HTML::Template question
in thread HTML::Template question

You haven't posted all the relevant code, so I was guessing from the error messages that you declare the parameter in upper case and then attempt to set it in lower case. Try searching for the string 'schedule_rows' in your code, then find where you declare that in your template file. I think you will find they are different.

The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^4: HTML::Template question
by iRemix94 (Sexton) on Jul 21, 2015 at 11:58 UTC

    I've updated the template part. I think you can see that it isn't a case of wrong loop names etc.

      have you searched your code for the string in the error message?

      The way forward always starts with a minimal test.

        Yes, and its spelled correctly. I found something, if I put the TMPL_LOOP SCHEDULE_COLUMNS outside of the TMPL_LOOP SCHEDULE_ROWS, the error is gone. Don't know why though..