Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
76892513
Commit
76892513
authored
Jul 30, 2012
by
Katherine Bailey
Browse files
Adding/modifying some todos
parent
73fee52a
Changes
3
Hide whitespace changes
Inline
Side-by-side
core/includes/install.core.inc
View file @
76892513
...
...
@@ -1412,6 +1412,7 @@ function install_bootstrap_full(&$install_state) {
// Clear the module list that was overriden earlier in the process.
// This will allow all freshly installed modules to be loaded.
module_list_reset
();
// @todo Figure out how best to handle the Kernel constructor parameters.
$kernel
=
new
DrupalKernel
(
'prod'
,
FALSE
);
$kernel
->
boot
();
drupal_bootstrap
(
DRUPAL_BOOTSTRAP_FULL
);
...
...
core/lib/Drupal/Core/DrupalKernel.php
View file @
76892513
...
...
@@ -23,9 +23,8 @@ public function registerBundles() {
new
CoreBundle
(),
);
// TODO: Somehow remove the necessity of calling system_list() to find out which
// bundles exist.
// TODO: Remove the necessity of calling system_list() to find out which
// bundles exist. See http://drupal.org/node/1331486
$modules
=
array_keys
(
system_list
(
'module_enabled'
));
foreach
(
$modules
as
$module
)
{
$camelized
=
ContainerBuilder
::
camelize
(
$module
);
...
...
index.php
View file @
76892513
...
...
@@ -27,6 +27,7 @@
require_once
DRUPAL_ROOT
.
'/core/includes/bootstrap.inc'
;
drupal_bootstrap
(
DRUPAL_BOOTSTRAP_CODE
);
// @todo Figure out how best to handle the Kernel constructor parameters.
$kernel
=
new
DrupalKernel
(
'prod'
,
FALSE
);
// Create a request object from the HTTPFoundation.
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment