Quote:
Originally Posted by shka
|
Thanks for that. Will check that.
Quote:
Originally Posted by shka
Your variables are cruelly named. Which of them can get the value 'assets'?
|
Seems not important, because any line like...
PHP Code:
$var[$i]['FIELD'][$y] = $item['FIELD'];
...in my code, results in this error.
Only if all those (five) lines excluded, my code is running. But probably these lines aren't the problem. At the moment I really don't know, what is going on.
--------------- Added [DATE]1635476154[/DATE] at [TIME]1635476154[/TIME] ---------------
SOLVED
I've solved that. Error was in template.
This code...
Code:
<vb:if condition="$val.assets >0">...</vb:if>
...results in that error.
I solved that by doing...
Code:
{vb:set assets, {vb:var val.assets}}
<vb:if condition="$assets >0">...</vb:if>
...what works with PHP8. I have no errors anymore.