It looks like you're new here. If you want to get involved, click one of these buttons!
Severity: 8192
Message: The each() function is deprecated. This message will be suppressed on further calls
Filename: blocks/if.php
Line Number: 41
Any ideas to why this may be happening? The page in question has a block in it that has some pretty simple dwoo if statements that worked fine in Fuel 1.2
Comments
This appears to be due to some DWOO library code that may need to be updated. Can you test something for me on your end? If you go to that file at
fuel/modules/fuel/libraries/parser/dwoo/plugins/builtin/if.php
line 41 and replace thewhile (list($k,$v) = each($params)) {
withforeach ($params as $k => $v) {
does that fix that error for you?Yep, that seems to have gotten rid of the message.