Issue #2062243 by chertzog, johnmcc, m1r1k: Remove calls to deprecated global in core/modules/node/node.pages.inc.
parent
40dd23d0b9
commit
cd9fc73baa
|
@ -86,7 +86,7 @@ function theme_node_add_list($variables) {
|
||||||
* @deprecated Use \Drupal\node\Controller\NodeController::add()
|
* @deprecated Use \Drupal\node\Controller\NodeController::add()
|
||||||
*/
|
*/
|
||||||
function node_add($node_type) {
|
function node_add($node_type) {
|
||||||
global $user;
|
$user = \Drupal::currentUser();
|
||||||
|
|
||||||
$type = $node_type->type;
|
$type = $node_type->type;
|
||||||
$langcode = module_invoke('language', 'get_default_langcode', 'node', $type);
|
$langcode = module_invoke('language', 'get_default_langcode', 'node', $type);
|
||||||
|
|
Loading…
Reference in New Issue