Bug #81208
closedInvalid SQL query when previewing a workspace with translated relations
100%
Description
DISCLAIMER¶
This is quite tricky and could not understand how to reproduce it in a vanilla install.
Context¶
- The problem happens for me when previewing a page from a workspace with a menu of categories associated to EXT:news records.
- In my case I have a custom extended domain model for news records but it does not seem to be related, I removed corresponding columns/fields from the query below
Preview crashes with:
An exception occurred while executing 'SELECT `uid_local`, `uid_foreign`, `tablenames`, `sorting`, `sorting_foreign`, `fieldname`, `uid`, `pid`, `tstamp`, `crdate`, `cruser_id`, `deleted`, `hidden`, `starttime`, `endtime`, `t3ver_oid`, `t3ver_id`, `t3ver_wsid`, `t3ver_label`, `t3ver_state`, `t3ver_stage`, `t3ver_count`, `t3ver_tstamp`, `t3ver_move_id`, `t3_origuid`, `sys_language_uid`, `l10n_parent`, `l10n_diffsource`, `title`, `description`, `parent`, `items`, `fe_group`, `images`, `single_pid`, `shortcut`, `import_id`, `import_source`, `seo_title`, `seo_description`, `seo_headline`, `seo_text`, `l10n_state` FROM `sys_category` WHERE (`pid` = ?) AND (`t3ver_oid` = ?) AND (`t3ver_wsid` = ?) AND (`sys_category`.`deleted` = 0) LIMIT 1' with params [-1, 29, 2]: Unknown column 'uid_local' in 'field list'
Call stack shows:
After quite some deep debugging, I could understand the context:
- This happens when the rows array which need to be overlaid in
\TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbBackend::doLanguageAndWorkspaceOverlay()
are the result of a JOIN (in my case a JOIN fromsys_category
andsys_category_record_mm
- Each row is thus containing fields coming from both tables
- The test on
$source
at the beginning of methoddoLanguageAndWorkspaceOverlay
properly detects that a JOIN is in use and extracts the right table (sys_category
) - There are some tests whether the "original" record needs to be fetched, for instance when a move is detected, that's not invoked in my case
- There is another test which detects that current record is a translation already and then would fetch the parent record instead, this is where the problem lies
- If current record is a default language record AND we are in the context of fetching the content of a workspace (method is invoked multiple times with same record causing no errors until the context of the call is the actual workspace preview), then it bypasses the action of reloading the record from database
- Since it bypasses this reload, call to
versionOL
is made with a row containing additional columns fromsys_category_record_mm
and since the test at the very beginning of methodversionOL
succeeds, there is a call to methodgetWorkspaceVersionOfRecord
with those invalid additional columns and this is the source of the SQL failure
Solution Found¶
The test to reload the original record is extended to check if we are in the context of a workspace preview and if so, ensure no additional columns are present
Files
Updated by Xavier Perseguers over 7 years ago
- Description updated (diff)
Added new lines to SQL to make it more readable
Updated by Gerrit Code Review over 7 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 https://review.typo3.org/52791
Updated by Gerrit Code Review over 7 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52791
Updated by Michael Kasten over 7 years ago
Can confirm this bug, same Problem here with TYPO3 8.7.4 and News.
I see, here is a patch, and it will be revied.. since four months, what is the plan here?
Any information about in which release ore when this patch should be available?
We have two big TYPO3 Installation, ready to go online, no chance to patch the core with my self (no permission at this hosting)
Any other hints?
best regards
Updated by Xavier Perseguers about 7 years ago
Hey Michael,
Since you face the very same problem, I would suggest to test the patch to see if it works properly and then give a feedback in the form of a review, following the link to the review system (same credentials as for here).
A patch is good but if nobody confirms the bug and reports that the patch indeed fixes the problem, then it's unlikely to be merged on its own...
Updated by Andreas Kokott about 7 years ago
In my case the patch did not help.
The columns of my custom _mm table are still applied to the query.
Updated by Gerrit Code Review about 7 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52791
Updated by Gerrit Code Review about 7 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52791
Updated by Sascha no-lastname-given about 7 years ago
I have the same problem.
The last patch works for me.
Updated by Oliver Hader over 6 years ago
To continue on this issue, I'd kindly like to ask for a step-by-step documentation on how to reproduce the behavior - which scenario is required for that?
Updated by Susanne Moog over 6 years ago
- File kittensftw.zip kittensftw.zip added
- File T3D_tree_PID201_L0_2018-03-07_13-01.t3d T3D_tree_PID201_L0_2018-03-07_13-01.t3d added
Attached is a test extension I just generated with the extension builder and a t3d export of a page which reproduces the error.
Steps (without the t3d export, manually done)
- Extract example extension "kittensftw" and install it
- Create a new page
- Create a content element on the page - choose the plugin from the example extension and use the current page as starting point
- Create a category on the page
- Create an example extension record ("kitten") on the page and assign the category
- Preview (without workspace) in frontend: you should see a list view with your record
- Switch to workspace
- DO NOT change anything
- Preview same page -> Exception
Uncaught TYPO3 Exception
An exception occurred while executing 'SELECT `uid_local`, `uid_foreign`, `tablenames`, `fieldname`, `sorting`, `sorting_foreign`, `uid`, `pid`, `tstamp`, `crdate`, `cruser_id`, `deleted`, `hidden`, `starttime`, `endtime`, `t3ver_oid`, `t3ver_id`, `t3ver_wsid`, `t3ver_label`, `t3ver_state`, `t3ver_stage`, `t3ver_count`, `t3ver_tstamp`, `t3ver_move_id`, `t3_origuid`, `sys_language_uid`, `l10n_parent`, `l10n_diffsource`, `title`, `description`, `parent`, `items`, `l10n_state`, `fe_group`, `images`, `single_pid`, `shortcut`, `import_id`, `import_source`, `seo_title`, `seo_description`, `seo_headline`, `seo_text` FROM `sys_category` WHERE (`pid` = ?) AND (`t3ver_oid` = ?) AND (`t3ver_wsid` = ?) AND (`sys_category`.`deleted` = 0) LIMIT 1' with params [-1, 7, 1]: Unknown column 'uid_local' in 'field list'
Updated by Dennis Metz over 6 years ago
Got the exact same problem.
Last patch is working for me too.
Updated by Frédéric Lebel over 6 years ago
We have the same problem here.
The patch works for us.
Updated by Dennis Metz over 6 years ago
Hey guys,
is there anything new about this?
We really need this fix...
Updated by Gianluca Strafella over 6 years ago
Last patch works fine with TYPO3 8.7.15.
Updated by Tymoteusz Motylewski over 6 years ago
- Related to Bug #82750: Workspace preview doesn't preview MM relations properly added
Updated by Gerrit Code Review almost 6 years ago
Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/52791
Updated by Marcos Fadul almost 6 years ago
I've having this issue also with not translated content.
We are using typo3 8.7.20 with Flux and Blog extension. Previewing the default language is generation the same error.
We are using the patch #4. It fixed part of the problem.
Updated by Franz Koch over 5 years ago
facing the same issue. Patchset 5 unfortunately no longer applies due to small changes related to TYPO3 context and workspaceID, but applying the changes from the patchset manually did unfortunately not solve the issue for me (or maybe I messed it up somehow).
Updated by Torben Hansen over 5 years ago
The problem is still valid in TYPO3 9.5 LTS. I'm facing the problem in a project with models that have simple mm relations to sys_categories and also with a mm relations to a custom model.
In a fresh TYPO3 website, the problem is also reproducible with Susis demo extension mentioned in #81208#note-13
Update: It seems, that $pageRepository->versionOL($tableName, $row, true);
in overlayLanguageAndWorkspace
is causing the exception.
Updated by Kai Tallafus over 5 years ago
Can confirm this still happens in V9.5. Using events2 Extension, which has a flexform with sys_category tree multiselect.
Updated by Jakob Berlin over 5 years ago
- Category changed from Extbase to Extbase + l10n
- Priority changed from Should have to Must have
- TYPO3 Version changed from 8 to 9
- PHP Version set to 7.2
- Tags set to uid_local
also still have this problem in a TYPO3 9.5.5 with news 7.1 installation :(
Updated by Ralf Merz about 5 years ago
Hi,
I also run into this error on TYPO3 9.5.9 with
"t3g/blog": "^9.1",
installed.
I cannot preview a blog page having a category assigned in workspace.
Getting same exception:
An exception occurred while executing 'SELECT `uid_local`, `uid_foreign`, `tablenames`, `fieldname`, `sorting`, `sorting_foreign`, `uid`, `pid`, `tstamp`, `crdate`, `cruser_id`, `deleted`, `hidden`, `starttime`, `endtime`, `t3ver_oid`, `t3ver_id`, `t3ver_wsid`, `t3ver_label`, `t3ver_state`, `t3ver_stage`, `t3ver_count`, `t3ver_tstamp`, `t3ver_move_id`, `t3_origuid`, `sys_language_uid`, `l10n_parent`, `l10n_diffsource`, `title`, `description`, `parent`, `items`, `fe_group`, `images`, `single_pid`, `shortcut`, `import_id`, `import_source`, `seo_title`, `seo_description`, `seo_headline`, `seo_text`, `l10n_state`, `slug`, `content`, `posts` FROM `sys_category` WHERE (`pid` = ?) AND (`t3ver_oid` = ?) AND (`t3ver_wsid` = ?) AND (`sys_category`.`deleted` = 0) LIMIT 1' with params [-1, 2, 1]: Unknown column 'uid_local' in 'field list'
Are there any news on this?
Will try to debug...
Thx
merzilla
Updated by Xavier Perseguers about 5 years ago
Hello Ralf,
Are there any news on this?
Will try to debug...
No need to debug, just check the patch I created ... 2 years ago :)
Updated by Ralf Merz about 5 years ago
Xavier Perseguers wrote:
Hello Ralf,
Are there any news on this?
Will try to debug...No need to debug, just check the patch I created ... 2 years ago :)
Hi Xavier,
i have just testet PS 5, but it does not apply to v9 out of the box.
I´ll have a look in the extbase code and try to apply it manually.
Thanks for your fast reply!
Cheers
Ralf
Updated by Ralf Merz about 5 years ago
As I could see now for v9 we need to also patch function overlayLanguageAndWorkspace() in Typo3DbBackend.php as "consistentTranslationOverlayHandling" is enabled by default in v9 and will be always on in v10.
Updated by Ralf Merz about 5 years ago
- File 81208_v9.diff 81208_v9.diff added
Hi guys,
I've added the patch manually to extbase in v9.5.9.
So the patch mainly is for doLanguageAndWorkspaceOverlay(), but I've now also added it to overlayLanguageAndWorkspace() in devil's line 666 ;)
We use PHP 7.3, but this should not be an issue.
Can someone please try this out?
I do not exactly remember to push it to gerrit... have to read guidelines again first to be able to push for v9... :( sorry. But I guess I am able to give it a try today.
Cheers
merzilla
Updated by Gerrit Code Review about 5 years ago
Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Ralf Merz about 5 years ago
Gerrit Code Review wrote:
Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
I've implemented the patch now also in the master branch. HTH and will fix this preview bug for you, too.
Updated by Gerrit Code Review about 5 years ago
Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Lukas Speck about 5 years ago
Gerrit Code Review wrote:
Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
The Patch has a bug in the line 741. If a workspace ist active and $forceRecordReloadInWorkspace is true, $row is replaced by a result where 'l10n' (or $GLOBALS['TCA'][$tableName]['ctrl']['transOrigPointerField']) is qual to uid. But this field could be 0 and then the result is "false".
I fixed it with this line in line mentioned:
$row[$GLOBALS['TCA'][$tableName]['ctrl']['transOrigPointerField']] == 0 ? $row['uid'] : $row[$GLOBALS['TCA'][$tableName]['ctrl']['transOrigPointerField']]
Cheerio Lukas
Updated by Kurt Gusbeth over 4 years ago
I had the same problem with an own extension (which uses TYPO3 categories) and the patch
https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
fixed it, but there is no line 741 to see in the patch.
Lukas, can you tell, which code should be replaced?
It is an old "Must have" bug and it is still not fixed in TYPO3 9.5.14...
Updated by David Menzel over 4 years ago
I have the same error (again, I think). It could be that this happened before with another extensions, the bug sounds familiar.
It happens in 9.5.15 and blog 9.1.2 when I want to preview the blog list or a plog post in workspaces in the german language (which is the default language). I translated the page into english and there the preview seems to work.
(1/2) Doctrine\DBAL\Exception\InvalidFieldNameException
An exception occurred while executing 'SELECT `uid_local`, `uid_foreign`, `tablenames`, `fieldname`, `sorting`, `sorting_foreign`, `uid`, `pid`, `tstamp`, `crdate`, `cruser_id`, `deleted`, `hidden`, `starttime`, `endtime`, `t3ver_oid`, `t3ver_id`, `t3ver_wsid`, `t3ver_label`, `t3ver_state`, `t3ver_stage`, `t3ver_count`, `t3ver_tstamp`, `t3ver_move_id`, `t3_origuid`, `sys_language_uid`, `l10n_parent`, `l10n_diffsource`, `title`, `description`, `parent`, `items`, `fe_group`, `images`, `single_pid`, `shortcut`, `import_id`, `import_source`, `seo_title`, `seo_description`, `seo_headline`, `seo_text`, `content`, `l10n_state`, `posts`, `slug` FROM `sys_category` WHERE (`pid` = ?) AND (`t3ver_oid` = ?) AND (`t3ver_wsid` = ?) AND (`sys_category`.`deleted` = 0) LIMIT 1' with params [-1, 354, 1]: Unknown column 'uid_local' in 'field list'
in /var/www/html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 60
in /var/www/html/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php line 166
in /var/www/html/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php line 146
in /var/www/html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 912
in /var/www/html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryBuilder.php line 206
in /var/www/html/web/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php line 187
in /var/www/html/web/typo3/sysext/frontend/Classes/Page/PageRepository.php line 2024
in /var/www/html/web/typo3/sysext/frontend/Classes/Page/PageRepository.php line 1819
...
Has someone a patch for v9.5.15?
Updated by Xavier Perseguers over 4 years ago
Not me, reported with a suggested fix 3 years ago, Susanne wrote a test extension 2 years ago, does not seem to ring a bell to be finally tackled with, I personally don't need it (yet) since I'm still on v8 for the 2 big websites I would possibly need it. Just hope that someone is finally taking care.
Updated by Markus Hackel over 4 years ago
- File 81208_v9.5.diff 81208_v9.5.diff added
Lukas Speck wrote:
Gerrit Code Review wrote:
Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791The Patch has a bug in the line 741. If a workspace ist active and $forceRecordReloadInWorkspace is true, $row is replaced by a result where 'l10n' (or $GLOBALS['TCA'][$tableName]['ctrl']['transOrigPointerField']) is qual to uid. But this field could be 0 and then the result is "false".
I fixed it with this line in line mentioned:
[...]Cheerio Lukas
I can provide a patch for TYPO3 9.5 which works for me and also implements the fix mentioned in Lukas' comment.
Since the affected class has some more changes in v10 I will have a closer look to provide this fix there too. But I hope to be able to push it to Gerrit soon.
Updated by Gerrit Code Review over 4 years ago
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/64333
Updated by Gerrit Code Review over 4 years ago
Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Markus Hackel over 4 years ago
Gerrit Code Review wrote:
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/64333
Please forget about this one. I accidentally created a new patchset initially.
Updated by Markus Hackel over 4 years ago
Gerrit Code Review wrote:
Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Above patch you can test in v10 with Susanne's EXT:kittensftw attached to this ticket.
For v9.5 you can still try the 81208_v9.5.diff.
Updated by Gerrit Code Review over 4 years ago
Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Anonymous over 4 years ago
Ralf Merz wrote:
Hi guys,
I've added the patch manually to extbase in v9.5.9.
So the patch mainly is for doLanguageAndWorkspaceOverlay(), but I've now also added it to overlayLanguageAndWorkspace() in devil's line 666 ;)We use PHP 7.3, but this should not be an issue.
Can someone please try this out?
I do not exactly remember to push it to gerrit... have to read guidelines again first to be able to push for v9... :( sorry. But I guess I am able to give it a try today.Cheers
merzilla
81208_v9.5.diff works for me in 9.5.17. Great! But PS9 seems to be broken - I cannot apply it on v9.
Updated by Anonymous over 4 years ago
I did not use workspaces for years. Just to enable the feature on a v9 installation. Of course it yelled out big fat Whoooops whoops an error occured. Now I am here. 2020 - with a quite old issue still unresolved - even though several ways to reproduce the issue were provided. even a patch. I'll try to fix the PS9 so it may merge again on v9 and master. holy batman
Updated by Gerrit Code Review over 4 years ago
Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Anonymous over 4 years ago
Gerrit Code Review wrote:
Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Patch set 10 does not fix the issue. 81208_v9.5.diff is still the way to go - at least to get rid of the exception. 81208_v9.5.diff still does not get it right with sys_category - but at least the frontend does not break.
Updated by Benni Mack over 4 years ago
- Related to Feature #90072: Make inline TCA fields workspace-transparent for Extbase (foreign_field and foreign_sortby) added
Updated by Benni Mack over 4 years ago
- Related to Bug #85061: Extbase doesn't overlay workspace records added
Updated by Jonathan Starck about 4 years ago
- TYPO3 Version changed from 9 to 10
- PHP Version changed from 7.2 to 7.4
I also got this error in TYPO3 Version 10 on PHP 7.4 via Composer
Updated by Carsten Hülsmann about 4 years ago
Jonathan Starck wrote:
I also got this error in TYPO3 Version 10 on PHP 7.4 via Composer
Same issues here.
The patch did work but due to another patch (https://review.typo3.org/c/Packages/TYPO3.CMS/+/57012) it doesn't anymore.
Updated by Gerrit Code Review about 4 years ago
Patch set 11 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Gerrit Code Review about 4 years ago
Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Carsten Hülsmann about 4 years ago
- Assignee changed from Xavier Perseguers to Benni Mack
I gave it another try - less complex.
The original idea is kept and I just extended the changes Benni did already for languageOverlays but extended this also in case we're in workspace context to get rid of the additional columns here as well.
Updated by Gerrit Code Review about 4 years ago
Patch set 13 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Gerrit Code Review about 4 years ago
Patch set 14 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Gerrit Code Review about 4 years ago
Patch set 15 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Gerrit Code Review about 4 years ago
Patch set 16 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Gerrit Code Review about 4 years ago
Patch set 17 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/52791
Updated by Gerrit Code Review about 4 years ago
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/66732
Updated by Hercules Karvasonis almost 4 years ago
Hi all.
The latest patch above is fixing the issue for me in the latest TYPO3 10.4.10.
Thanks a lot!
Hercules.
Updated by Alexander Rotzsch almost 4 years ago
With patch 66732 the error (only on blog pages in my case) is gone. Testet with 10.4.13. Please cherry pick. :)
Updated by Gerrit Code Review over 3 years ago
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68915
Updated by Gerrit Code Review over 3 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68915
Updated by Gerrit Code Review over 3 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68915
Updated by Gerrit Code Review over 3 years ago
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68935
Updated by Gerrit Code Review over 3 years ago
Patch set 2 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68935
Updated by Gerrit Code Review over 3 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68915
Updated by Benni Mack over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset d608b64cf4fe25161ec6de75d81f8ebf562f0184.
Updated by Benni Mack over 2 years ago
- Related to Bug #88784: Record language is incorrectly changed to default language in overlayLanguageAndWorkspace added