You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your change will silence the error, but you won't get the correct param name passed to the function.
It seems ACF doesn't support dynamically named function params. I developed this using Lucee 5 so It looks like you may need to use an argumentCollection struct.
I am using adobe2016, and got an error in /controllers/examples.cfc
line 99, function respond()
was
flashInsert("#local.flashType#" = arguments[local.flashType]);
correction to fix error:
flashInsert( local.flashType = arguments[local.flashType]);
The text was updated successfully, but these errors were encountered: