flack

Results 60 issues of flack

**Describe the bug** Since a couple of weeks or so, PDT gives the wrong signature for `array_key _exists` (haven't checked other functions, just noticed it on this one). For some...

bug

**Describe the bug** The following functions are identical: ```php function a() { static $cache = null; if ($cache === null) { $cache = true; } return $cache; } function b()...

bug

**Describe the bug** A referenced variable in a `foreach` loop is falsely marked as never used: ![Screenshot_20230522_151645](https://github.com/eclipse/pdt/assets/425166/6ecb56bf-cf9f-4e8e-a2f2-f399dac364d3) It is a false positive, because `$array` after the loop has the values...

bug

## User Story As an admin, I want to set offline donations to Completed in the backend. If I mis-click in the date selector for some reason, I get a...

type: bug
keep-fresh

e.g. to remove a previous selection from a checkbox field, see #525

I have been using 3.1.1 until now and for a radiobutton customField I used ```php $issueField->addCustomField('customfield_12345', null); ``` to remove a previous selection. This has worked fine so far, but...

I just tried updating from frontend_editing 3.3.4 to 4.x (on typo3 11.5), and now all pages I try to open in the backend editor throw this exception. The end of...

When I run the following code in PHP 5.4.45 ```php $password = 'XXX'; $salt = 'XX'; var_dump(password_verify($password, crypt($password, $salt))); ``` I get `false` as result. When I run the same...

similar to #7141. I have checked again with `WP_DEBUG_DISPLAY = true` and the latest Give release. Here is a list of notices that get displayed on almost every page: ```...

type: bug

Currently when `php-cs-fixer` is running recursively on an entire file tree, you only get a `.` output for each file it's processing. For debugging purposes, for example when the program...

kind/feature request
topic/I/O