Actions
Bug #83500
closedCore: Error handler (FE): PHP Warning: count(): Parameter must be an array or an object that implements Countable in /typo3/sysext/frontend/Classes/View/AdminPanelView.php line 729
Start date:
2018-01-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
adminpanel
Complexity:
Is Regression:
Sprint Focus:
Description
I receive this error on the admin panel.
Files
Updated by Alexander Averbuch almost 7 years ago
I receive this error on the admin panel.
This line causes the error
$tableArr[] = [$this->extGetLL('info_countUserInt'), count($tsfe->config['INTincScript'])];
Updated by Steffen Kamper almost 7 years ago
Please add information about your config and how to reproduce
Updated by Alexander Averbuch almost 7 years ago
I installed TYPO3 9.0.0 with composer.
Then I installed the preconfigured distribution (Introduction)
I'm logged in as admin in the backend, call the start page, and find the error in the log.
When I call any other page, can I find this entry in the log.
The admin panel is deactivated (the red switch)
The problem doesn't exist in 9.1.0-dev
Updated by Georg Ringer almost 7 years ago
- Status changed from New to Resolved
this is a duplciate of #83345. therefore I am closing it. line looks now
$tableArr[] = [$this->extGetLL('info_countUserInt'), count($tsfe->config['INTincScript'] ?? [])];
Updated by Georg Ringer almost 7 years ago
- Is duplicate of Bug #83345: AdminPanelView tries to count null value added
Actions