Actions
Bug #68312
closedPublish Dates and Access Rights - Publish Date and Expiration Date
Start date:
2015-07-17
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
In TYPO3 7.4-dev Start / Stop for translated content elements will no longer be editable
Files
Updated by Xiaoling Peng over 9 years ago
Xiaoling Peng wrote:
In TYPO3 7.4-dev Start / Stop for translated content elements will no longer be editable
- to active the editing of the start and ending date from translated content element.
unset($GLOBALS['TCA']['tt_content']['columns']['starttime']['l10n_display']);
$GLOBALS['TCA']['tt_content']['columns']['starttime']['l10n_mode'] = 'mergeIfNotBlank';
unset($GLOBALS['TCA']['tt_content']['columns']['endtime']['l10n_display']);
$GLOBALS['TCA']['tt_content']['columns']['endtime']['l10n_mode'] = 'mergeIfNotBlank';
Updated by Gerrit Code Review over 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/41689
Updated by Andreas Wolf over 9 years ago
- Status changed from Under Review to Rejected
That was a decision done on purpose, as the translated records are only overlays for the original language. Therefore, they cannot have independent start/end dates. If you need this, create an independent record in the translation language instead.
Actions