Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
57fab3b0
Commit
57fab3b0
authored
Apr 30, 2012
by
Crell
Browse files
Remove last vestiges of ['q'] from the kernel branch.
parent
29ec5c92
Changes
2
Hide whitespace changes
Inline
Side-by-side
core/lib/Drupal/Core/EventSubscriber/PathSubscriber.php
View file @
57fab3b0
...
...
@@ -24,9 +24,6 @@ class PathSubscriber implements EventSubscriberInterface {
* @todo The path system should be objectified to remove the function calls
* in this method.
*
* @todo We're writing back to $_GET['q'] for temporary BC. All instances of
* $_GET['q'] should be removed and then this code eliminated.
*
* @param GetResponseEvent $event
* The Event to process.
*/
...
...
core/lib/Drupal/Core/ExceptionController.php
View file @
57fab3b0
...
...
@@ -294,7 +294,7 @@ protected function getLastCaller($backtrace) {
* The Event to process.
*/
public
function
on404Html
(
FlattenException
$exception
,
Request
$request
)
{
watchdog
(
'page not found'
,
check_plain
(
$
_GET
[
'q'
]
),
NULL
,
WATCHDOG_WARNING
);
watchdog
(
'page not found'
,
check_plain
(
$
request
->
attributes
->
get
(
'system_path'
)
),
NULL
,
WATCHDOG_WARNING
);
// Check for and return a fast 404 page if configured.
// @todo Inline this rather than using a function.
...
...
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