- Issue created by @yseki
- @yuriseki opened merge request.
- Status changed to Needs review
about 2 years ago 4:13pm 17 February 2023 - Status changed to Needs work
about 2 years ago 4:57pm 20 February 2023 - πΊπΈUnited States smustgrave
This issue is being reviewed by the kind folks in Slack, #needs-review-queue-initiative. We are working to keep the size of Needs Review queue [2700+ issues] to around 400 (1 month or less), following Review a patch or merge request β as a guide.
As a bug will need a test case.
Tried replicating with devel installed but didn't see this log.
- π¨π¦Canada RobLoach Earth
This occurs when the `version` is an empty string. PHP's `is_string()` returns TRUE on `''` strings.
$str = ''; $result = is_string($str); $char = $str[0]; // Uninitialized string offset: 0 echo "Char: $char";
It's not really a bug, as it is an oversight into how `is_string()` acts on empty strings. Instead, possibly we could use strlen()?