Project

General

Profile

Actions

Bug #37578

closed

Illegal string offset 'uid' in /typo3/sysext/beuser/class.tx_beuser_switchbackuser.php

Added by Thomas Deinhamer almost 12 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
Start date:
2012-05-29
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.0
PHP Version:
5.4
Tags:
Complexity:
Is Regression:
Sprint Focus:

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.


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #38024: Illegal string offsets in t3lib_stdgraphicClosed2012-06-13

Actions
Actions #1

Updated by Thomas Deinhamer almost 12 years ago

Probably this happens when calling the CLI dispatcher on the command line executing an extbase command controller. Not sure.

Actions #2

Updated by Thomas Deinhamer almost 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. ;)

Actions #3

Updated by Gerrit Code Review over 11 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

Actions #4

Updated by Gerrit Code Review over 11 years ago

Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16108

Actions #5

Updated by Gerrit Code Review over 11 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

Actions #6

Updated by Gerrit Code Review over 11 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

Actions #7

Updated by Gerrit Code Review over 11 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

Actions #8

Updated by Christian Kuhn over 11 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #9

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF