- Issue created by @erwindaez
- Status changed to Needs review
11 months ago 9:44pm 7 January 2024 - last update
11 months ago Patch Failed to Apply - ๐ฎ๐ณIndia prashant.c Dharamshala
Prashant.c โ made their first commit to this issueโs fork.
- Status changed to Needs work
11 months ago 8:24am 8 January 2024 - ๐ฎ๐ณIndia prashant.c Dharamshala
This patch is not applying on
10.1.x
or11.x
. Request you to re-submit the patch. Made new patch to bypass the error in said condition with an index verification:
$value = $value[0];
To
$value = isset($value[0]) ? $value[0] : $value;
Worked for me.