Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tinymce
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TYPO3
tinymce
Commits
17a651f7
Commit
17a651f7
authored
10 years ago
by
Stefan Galinski
Browse files
Options
Downloads
Patches
Plain Diff
[BUGFIX] Only call getModTSconfig in backend mode
Fixes:
https://forge.typo3.org/issues/64907
parent
93fa6926
No related branches found
Branches containing commit
Tags
4.3.4
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
class.tinymce.php
+5
-3
5 additions, 3 deletions
class.tinymce.php
with
5 additions
and
3 deletions
class.tinymce.php
+
5
−
3
View file @
17a651f7
...
...
@@ -76,9 +76,11 @@ class tinyMCE {
$languageInstance
=
(
TYPO3_MODE
===
'FE'
?
$GLOBALS
[
'TSFE'
]
:
$GLOBALS
[
'LANG'
]);
$languageKey
=
$languageInstance
->
lang
;
$groupOrUserProps
=
t3lib_BEfunc
::
getModTSconfig
(
''
,
'tx_tinyMCE'
);
if
(
trim
(
$groupOrUserProps
[
'properties'
][
'prefLang'
])
!==
''
)
{
$languageKey
=
$groupOrUserProps
[
'properties'
][
'prefLang'
];
if
(
TYPO3_MODE
===
'BE'
)
{
$groupOrUserProps
=
t3lib_BEfunc
::
getModTSconfig
(
''
,
'tx_tinyMCE'
);
if
(
trim
(
$groupOrUserProps
[
'properties'
][
'prefLang'
])
!==
''
)
{
$languageKey
=
$groupOrUserProps
[
'properties'
][
'prefLang'
];
}
}
// language conversion from TLD to iso631
...
...
This diff is collapsed.
Click to expand it.
Stefan Galinski
@sgalinski
mentioned in commit
93fa6926
·
10 years ago
mentioned in commit
93fa6926
mentioned in commit 93fa6926d21b84c71819276578920c1b978e280b
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment