I'm getting this error:
ERROR! TAG_NAME: Invalid char " " in tagname (line: 137 char: 4506)
That line in my code (currently) is the "global" line in this snippet:
I say "currently" because even if I add lines ahead of the offending line, the error message continues to point to line 137.
I used this line:
<cms:set TUE_desc = '' 'global'/>
to set the value earlier in the program. (That's a pair of single-quotes, not a double-quote.)
Any ideas on the true nature of the error?
ERROR! TAG_NAME: Invalid char " " in tagname (line: 137 char: 4506)
That line in my code (currently) is the "global" line in this snippet:
- Code: Select all
<cms:php>
global $CTX;
if(is_numeric(substr($CTX->get('TUE_desc'), 0, 1))) $CTX->set('TUE_numeric', 'True', 'global');
</cms:php>
I say "currently" because even if I add lines ahead of the offending line, the error message continues to point to line 137.
I used this line:
<cms:set TUE_desc = '' 'global'/>
to set the value earlier in the program. (That's a pair of single-quotes, not a double-quote.)
Any ideas on the true nature of the error?