Rico Sonntag
Rico Sonntag
Same here a password like "8ik,7ujm" is exported as "Y\rñçS»K\u0001½¾ËÌ©¼". Same for usernames.
> For me it was on line 152 (NC 22.1.1) > > ``` > Error: foreach() argument must be of type array|object, bool given at /var/www/vhosts/XXXXX/XXXXXX/apps/serverinfo/lib/OperatingSystems/DefaultOs.php#152 > ``` > >...
How about https://github.com/magicsunday/webtrees-module-installer-plugin
Do you got some time to look at this?
Because of duplicate code. You should avoid it where ever it is possible. As "customModuleLatestVersion" is a method from the core there is always a possibility of change. Maybe it...
This also fails for TYPO3 v12.4.10, Flux 10.0.9. > ideally you should rely on the automatic building of field labels What does this mean? > or use full label references...
`getDefaultScopes()` is declared as "protected" in league/oauth2-client/src/Provider/AbstractProvider.php, You should not override methode visibility. Maybe you should open an issue in "league/oauth2-client", so they could fix this mismatch.
What about if the form gets manipulated in the browsers using browsers dev tools? User changes checked/disabled state, submits the form, form validation succeeds although the checkbox isn't checked but...
The value of the disabled checkbox is also not available in the submitted form data. In Form class: ``` $this->add([ 'name' => 'export', 'type' => Checkbox::class, 'attributes' => [ 'id'...
Ok seems a issue (feature) of HTML, Values from disabled input elements are not submitted. https://www.w3.org/TR/2016/REC-html51-20161101/sec-forms.html#enabling-and-disabling-form-controls-the-disabled-attribute https://www.w3.org/TR/html401/interact/forms.html#h-17.12.1 > Therefore, it cannot receive user input nor will its value be submitted...