Project

General

Profile

Actions

Bug #36300

closed

Sys Action > Create backend user does not load existing user correctly

Added by Bart Dubelaar almost 12 years ago. Updated over 11 years ago.

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

100%

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

Description

The selected usergroups are not loaded although code exists to support this:

$selected = (is_array($vars['usergroup']) && t3lib_div::inList(implode(',', $vars['usergroup']), $checkGroup['uid'])) ? ' selected="selected" ' : '';

The $vars array is the raw user record from the DB, where the usergroup list is already comma separated. Removing the code to convert from an array conversion fixes it:

$selected = t3lib_div::inList($vars['usergroup'], $checkGroup['uid']) ? ' selected="selected" ' : '';

I am very curious how this code came in to place :-)


Related issues 1 (0 open1 closed)

Has duplicate TYPO3 Core - Bug #25329: Task center - sys_action: Usergroups are not selected.Closed2011-03-15

Actions
Actions #1

Updated by Gerrit Code Review almost 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/10706

Actions #2

Updated by Philipp Gampe almost 12 years ago

I am very curious how this code came in to place :-)

Use $ git blame -L 750,750 typo3/sysext/sys_action/task/class.tx_sysaction_task.php :)

2d81d318 (Oliver Hader 2010-06-13 14:56:44 +0000 750)                 $selected = (is_array($vars['usergroup']) && t3lib_div::inList(implode(',', $vars['usergroup']), $checkGroup['uid'])) ? ' selected="selected" ' : '';

However it seems that this code was checked-in in this way, because the commit from Oliver just cleaned up the svn eol property:
http://git.typo3.org/TYPO3v4/Core.git?a=history;f=typo3/sysext/sys_action/task/class.tx_sysaction_task.php

Actions #3

Updated by Gerrit Code Review almost 12 years ago

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

Actions #4

Updated by Gerrit Code Review almost 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/12259

Actions #5

Updated by Gerrit Code Review almost 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/12261

Actions #6

Updated by Gerrit Code Review almost 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/12262

Actions #7

Updated by Gerrit Code Review almost 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/12263

Actions #8

Updated by Bart Dubelaar almost 12 years ago

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

Updated by Gerrit Code Review over 11 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/13157

Actions #10

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/13270

Actions #11

Updated by Wouter Wolters over 11 years ago

Please close this issue. All affected branches are up to date.

Actions #12

Updated by Stefan Galinski over 11 years ago

  • Status changed from Under Review to Closed
Actions

Also available in: Atom PDF