Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
288
Merge Requests
288
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
4f6dc9a3
Commit
4f6dc9a3
authored
Jan 10, 2017
by
catch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2840596
by alexpott, dawehner: Update Symfony components to ~2.8.15
parent
4491a195
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
139 additions
and
123 deletions
+139
-123
composer.lock
composer.lock
+132
-123
core/lib/Drupal/Core/DrupalKernel.php
core/lib/Drupal/Core/DrupalKernel.php
+7
-0
No files found.
composer.lock
View file @
4f6dc9a3
This diff is collapsed.
Click to expand it.
core/lib/Drupal/Core/DrupalKernel.php
View file @
4f6dc9a3
...
...
@@ -1051,7 +1051,14 @@ protected function initializeSettings(Request $request) {
if
(
!
empty
(
$loader
))
{
$this
->
classLoader
->
unregister
();
$loader
->
register
();
$old_loader
=
$this
->
classLoader
;
$this
->
classLoader
=
$loader
;
// The optimized classloader might be persistent and store cache misses.
// For example, once a cache miss is stored in APCu clearing it on a
// specific web-head will not clear any other web-heads. Therefore
// fallback to the composer class loader that only statically caches
// misses.
$old_loader
->
register
();
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment