Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
9d4d6b05
Commit
9d4d6b05
authored
Apr 12, 2012
by
Crell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs
#1529868
by cosmiccreams: Minor doc fixes.
parent
6ee384e1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
core/lib/Drupal/Core/ExceptionController.php
core/lib/Drupal/Core/ExceptionController.php
+2
-2
core/lib/Drupal/Core/StreamWrapper/LocalStream.php
core/lib/Drupal/Core/StreamWrapper/LocalStream.php
+1
-1
core/lib/Drupal/Core/Updater/Updater.php
core/lib/Drupal/Core/Updater/Updater.php
+2
-2
core/lib/Drupal/Core/UrlMatcher.php
core/lib/Drupal/Core/UrlMatcher.php
+1
-1
No files found.
core/lib/Drupal/Core/ExceptionController.php
View file @
9d4d6b05
...
...
@@ -147,9 +147,9 @@ public function on404Html(FlattenException $exception, Request $request) {
$path
=
drupal_get_normal_path
(
variable_get
(
'site_404'
,
''
));
if
(
$path
&&
$path
!=
$system_path
)
{
// @
TODO
: Um, how do I specify an override URL again? Totally not clear.
// @
todo
: Um, how do I specify an override URL again? Totally not clear.
// Do that and sub-call the kernel rather than using meah().
// @
TODO
: The create() method expects a slash-prefixed path, but we
// @
todo
: The create() method expects a slash-prefixed path, but we
// store a normal system path in the site_404 variable.
$subrequest
=
Request
::
create
(
'/'
.
$path
,
'get'
,
array
(),
$request
->
cookies
->
all
(),
array
(),
$request
->
server
->
all
());
...
...
core/lib/Drupal/Core/StreamWrapper/LocalStream.php
View file @
9d4d6b05
...
...
@@ -44,7 +44,7 @@ abstract class LocalStream implements StreamWrapperInterface {
/**
* Gets the path that the wrapper is responsible for.
* @
TODO
: Review this method name in D8 per http://drupal.org/node/701358
* @
todo
: Review this method name in D8 per http://drupal.org/node/701358
*
* @return string
* String specifying the path.
...
...
core/lib/Drupal/Core/Updater/Updater.php
View file @
9d4d6b05
...
...
@@ -213,7 +213,7 @@ public function update(&$filetransfer, $overrides = array()) {
$this
->
makeWorldReadable
(
$filetransfer
,
$args
[
'install_dir'
]
.
'/'
.
$this
->
name
);
// Run the updates.
// @
TODO
: decide if we want to implement this.
// @
todo
: decide if we want to implement this.
$this
->
postUpdate
();
// For now, just return a list of links of things to do.
...
...
@@ -252,7 +252,7 @@ public function install(&$filetransfer, $overrides = array()) {
$this
->
makeWorldReadable
(
$filetransfer
,
$args
[
'install_dir'
]
.
'/'
.
$this
->
name
);
// Potentially enable something?
// @
TODO
: decide if we want to implement this.
// @
todo
: decide if we want to implement this.
$this
->
postInstall
();
// For now, just return a list of links of things to do.
return
$this
->
postInstallTasks
();
...
...
core/lib/Drupal/Core/UrlMatcher.php
View file @
9d4d6b05
...
...
@@ -97,7 +97,7 @@ protected function convertDrupalItem($router_item) {
);
// Place argument defaults on the route.
// @
TODO
: For some reason drush test runs have a serialized page_arguments
// @
todo
: For some reason drush test runs have a serialized page_arguments
// but HTTP requests are unserialized. Hack to get around this for now.
// This might be because page arguments aren't unserialized in
// menu_get_item() when the access is denied.
...
...
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