Project

General

Profile

Actions

Bug #27310

closed

Space missing in popup window

Added by dermueller no-lastname-given almost 13 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
Workspaces
Target version:
-
Start date:
2011-06-08
Due date:
% Done:

100%

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

Description

Only a small thing: in the popup window where you can send notifications to other users about change of state, a space character is missing.

In Classes\ExtDirect\ActionHandler.php this line
'html' => $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:window.sendToNextStageWindow.itemsWillBeSentTo') . $stageTitle,

needs to be somthing like this
'html' => $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:window.sendToNextStageWindow.itemsWillBeSentTo') .' '.$stageTitle,

The german language string for window.sendToNextStageWindow.itemsWillBeSentTo in fact has a space character at the end, but as far as I can see, there is a trim() done in function sL(), so this is cut off.

Actions

Also available in: Atom PDF