Project

General

Profile

Actions

Bug #23335

closed

it's not possible to edit BE_users created by earlier typo3-version

Added by Andreas Klein over 13 years ago. Updated almost 11 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-08-02
Due date:
% Done:

0%

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

Description

I tried to edit a backend-user (it's the same for groups) and got the errormessage as in bug http://bugs.typo3.org/view.php?id=15292&nbn=1
So I installed the proposed patch http://bugs.typo3.org/file_download.php?file_id=12514&type=bug
But, in my case this patch doesn't fix the problem, it only changes the errormessage to the one I have attached.
Btw, it is no problem to edit users which have been created after I installed typo3 4.4.1. The problem occurs with all users I created while I was running typo3 4.1.12.

(issue imported from #M15327)


Files

backend.html (13.6 KB) backend.html Administrator Admin, 2010-08-02 16:10

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #23306: DB browser is unusableClosedSteffen Ritter2010-07-29

Actions
Actions #1

Updated by Andreas Klein over 13 years ago

I just tried typo3 4.4.0 and the problem doesn't exist in this release. The problem is only present in 4.4.1.

Actions #2

Updated by Oliver Hader over 13 years ago

Please test the SVN TYPO3_4-4 branch or test the upcoming TYPO3 4.4.2 release - the behaviour your reported is fixed there...

Actions #3

Updated by Maik Matthias over 13 years ago

I can confirm this bug. Same problem in Typo 4.4.2 release.

Actions #4

Updated by Maik Matthias over 13 years ago

I fixed the bug in Typo 4.4.2 by changing the function getIcon in class.t3lib_treeview.php (line 655 ff) as follows:


function getIcon($row) {
if ($this->iconPath && $this->iconName) {
$icon = '<img'.t3lib_iconWorks::skinImg('',$this->iconPath.$this->iconName,'width="18" height="16"').' alt=""'.($this->showDefaultTitleAttribute ? ' title="UID: '.$row['uid'].'"':'').' />';
} else {
$icon = '';
if (is_array($row)) {
$icon = t3lib_iconWorks::getSpriteIconForRecord($this->table, $row, array(
'title' => ($this->showDefaultTitleAttribute ? 'UID: ' . $row['uid'] : $this->getTitleAttrib($row)),
'class' => 'c-recIcon'
));
}
}
return $this->wrapIcon($icon,$row);
}
--------------------------------

DonĀ“t know about possible side-effects yet.

Actions #5

Updated by Maik Matthias over 13 years ago

One more hint to the background of the described problem: It seem to have a relation to the extension tt_news. It occurs when an older version of tt_news (2.x) was installed before.

Actions #6

Updated by Andreas Klein over 13 years ago

Yes, as Maik said, the problem occurs only, if an older tt_news plugin was installed. I upgraded to typo3 4.4.2 an tt_news 3.0.1, but it doesn't help.

Actions #7

Updated by Andreas Klein over 13 years ago

I just tried typo3 4.4.4. It is still the same problem.

Actions #8

Updated by Andreas Klein over 13 years ago

I applied the patch from Maik Matthis and it helped to solve the problem.
Hope this patch will be included in future releases.

Actions #9

Updated by Stefan Galinski over 12 years ago

  • Target version deleted (0)

Please create a review request if this bug is still valid for you.

http://wiki.typo3.org/Contribute_Walkthrough

Actions #10

Updated by Alexander Opitz almost 11 years ago

  • Status changed from Needs Feedback to Closed

No feedback for over 90 days.

Actions

Also available in: Atom PDF