Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_routes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Show more breadcrumbs
TYPO3
sg_routes
Merge requests
!5
[BUGFIX] Reinitialize TSFE for redirecting non-accessible pages
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[BUGFIX] Reinitialize TSFE for redirecting non-accessible pages
bugfix_RedirectNonExisting
into
master
Overview
0
Commits
1
Changes
1
Merged
Kevin Ditscheid
requested to merge
bugfix_RedirectNonExisting
into
master
6 years ago
Overview
0
Commits
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b302d030
1 commit,
6 years ago
1 file
+
10
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Classes/Service/RoutingService.php
+
10
−
0
Options
@@ -232,6 +232,16 @@ class RoutingService {
}
}
// force pageid
if
(
$controller
->
getRequestedId
()
!==
$pageId
)
{
$controller
=
GeneralUtility
::
makeInstance
(
TypoScriptFrontendController
::
class
,
$TYPO3_CONF_VARS
,
$pageId
,
0
);
}
if
(
!
(
$controller
->
fe_user
instanceof
FrontendUserAuthentication
))
{
$controller
->
initFEuser
();
}
Loading