Bug #37578
closedIllegal string offset 'uid' in /typo3/sysext/beuser/class.tx_beuser_switchbackuser.php
100%
Description
Core: Error handler (BE): PHP Warning: Illegal string offset 'uid' in typo3/sysext/beuser/class.tx_beuser_switchbackuser.php line 31
Appears in the belog.
Updated by Thomas Deinhamer over 12 years ago
Probably this happens when calling the CLI dispatcher on the command line executing an extbase command controller. Not sure.
Updated by Thomas Deinhamer over 12 years ago
Code on line 31 should be changed from
if($that->session_table == 'be_sessions' && $that->user['uid'] && $that->user['ses_backuserid']) {
to
if($that->session_table == 'be_sessions' && isset($that->user['uid']) && isset($that->user['ses_backuserid'])) {
Probably. ;)
Updated by Gerrit Code Review about 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16108
Updated by Gerrit Code Review about 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16108
Updated by Gerrit Code Review about 12 years ago
Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/16110
Updated by Gerrit Code Review about 12 years ago
Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/16111
Updated by Gerrit Code Review about 12 years ago
Patch set 1 for branch TYPO3_4-5 has been pushed to the review server.
It is available at http://review.typo3.org/16112
Updated by Christian Kuhn about 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 84cb9b6829283bfb1287cf37f70874aca83a2523.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed