Closed (fixed)
Project:
Search API
Version:
7.x-1.x-dev
Component:
General code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
27 Oct 2018 at 18:45 UTC
Updated:
14 Sep 2020 at 13:35 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
evgeny.chernyavskiy commentedComment #3
evgeny.chernyavskiy commentedComment #4
damienmckennaComment #6
drunken monkeyAh, alright, thanks!
Committed.
Comment #8
colinstillwell commentedDuring our analysis for the PHP 7.3 compatibility warning fixes, we have been replacing anything with "continue" to "break" so that it preserves existing behaviour, without outputting warnings.
The patch in this issue actually changes the behaviour, so we should be careful not to get confused with this.
Having had a look at the change, we believe that the patch in https://www.drupal.org/node/3032431 may actually make more sense?
I just wanted to share our findings for the community!
Comment #9
evgeny.chernyavskiy commented@colinstillwell, my understanding is that we do need to
continue 2;in thedefaultcase of a switch there to avoid adding$task->idto executed tasks.