Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
project
drupal
Commits
76892513
Commit
76892513
authored
12 years ago
by
Katherine Bailey
Browse files
Options
Downloads
Patches
Plain Diff
Adding/modifying some todos
parent
73fee52a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/includes/install.core.inc
+1
-0
1 addition, 0 deletions
core/includes/install.core.inc
core/lib/Drupal/Core/DrupalKernel.php
+2
-3
2 additions, 3 deletions
core/lib/Drupal/Core/DrupalKernel.php
index.php
+1
-0
1 addition, 0 deletions
index.php
with
4 additions
and
3 deletions
core/includes/install.core.inc
+
1
−
0
View file @
76892513
...
@@ -1412,6 +1412,7 @@ function install_bootstrap_full(&$install_state) {
...
@@ -1412,6 +1412,7 @@ function install_bootstrap_full(&$install_state) {
// Clear the module list that was overriden earlier in the process.
// Clear the module list that was overriden earlier in the process.
// This will allow all freshly installed modules to be loaded.
// This will allow all freshly installed modules to be loaded.
module_list_reset
();
module_list_reset
();
// @todo Figure out how best to handle the Kernel constructor parameters.
$kernel
=
new
DrupalKernel
(
'prod'
,
FALSE
);
$kernel
=
new
DrupalKernel
(
'prod'
,
FALSE
);
$kernel
->
boot
();
$kernel
->
boot
();
drupal_bootstrap
(
DRUPAL_BOOTSTRAP_FULL
);
drupal_bootstrap
(
DRUPAL_BOOTSTRAP_FULL
);
...
...
This diff is collapsed.
Click to expand it.
core/lib/Drupal/Core/DrupalKernel.php
+
2
−
3
View file @
76892513
...
@@ -23,9 +23,8 @@ public function registerBundles() {
...
@@ -23,9 +23,8 @@ public function registerBundles() {
new
CoreBundle
(),
new
CoreBundle
(),
);
);
// TODO: Somehow remove the necessity of calling system_list() to find out which
// TODO: Remove the necessity of calling system_list() to find out which
// bundles exist.
// bundles exist. See http://drupal.org/node/1331486
$modules
=
array_keys
(
system_list
(
'module_enabled'
));
$modules
=
array_keys
(
system_list
(
'module_enabled'
));
foreach
(
$modules
as
$module
)
{
foreach
(
$modules
as
$module
)
{
$camelized
=
ContainerBuilder
::
camelize
(
$module
);
$camelized
=
ContainerBuilder
::
camelize
(
$module
);
...
...
This diff is collapsed.
Click to expand it.
index.php
+
1
−
0
View file @
76892513
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
require_once
DRUPAL_ROOT
.
'/core/includes/bootstrap.inc'
;
require_once
DRUPAL_ROOT
.
'/core/includes/bootstrap.inc'
;
drupal_bootstrap
(
DRUPAL_BOOTSTRAP_CODE
);
drupal_bootstrap
(
DRUPAL_BOOTSTRAP_CODE
);
// @todo Figure out how best to handle the Kernel constructor parameters.
$kernel
=
new
DrupalKernel
(
'prod'
,
FALSE
);
$kernel
=
new
DrupalKernel
(
'prod'
,
FALSE
);
// Create a request object from the HTTPFoundation.
// Create a request object from the HTTPFoundation.
...
...
This diff is collapsed.
Click to expand it.
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