Commit e0fb0c8
authored
[BUGFIX] Fix notice in ShowFormNoteEditForm
With PHP8 the following notice is thrown:
```
PHP Warning: Trying to access array offset on value of type int in /var/www/html/app/site/public/typo3conf/ext/powermail/Classes/Tca/ShowFormNoteEditForm.php line 224
```
the language uid is in `$this->data['databaseRow']['sys_language_uid']` but as sometimes it is an array and sometimes it is not I suggest the proposed solution to check all1 parent 5c9fc23 commit e0fb0c8
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
222 | | - | |
| 222 | + | |
| 223 | + | |
223 | 224 | | |
224 | 225 | | |
225 | 226 | | |
| |||
0 commit comments