A command has been given an invalid parameter. For example, it may happen if a number is used in SQR, while the compiler expects a variable.
SQR
Possible solutions: check the command and use valid syntax:
sqr(10) // error, variable expected sqr($var) // OK
Last updated 4 years ago