diff --git a/core/modules/node/lib/Drupal/node/NodeFormController.php b/core/modules/node/lib/Drupal/node/NodeFormController.php index 5b5f584..4fe33cb 100644 --- a/core/modules/node/lib/Drupal/node/NodeFormController.php +++ b/core/modules/node/lib/Drupal/node/NodeFormController.php @@ -145,14 +145,6 @@ public function form(array $form, array &$form_state, EntityInterface $node) { '#markup' => $author, ), ); - // If editing an existing node, show the url alias as well. - if (!$node->isNew()) { - $url_alias = '' . t('URL') . ': ' . drupal_get_path_alias('node/' . $node->id()); - $form['settings_summary']['url'] = array( - '#type' => 'item', - '#markup' => $url_alias, - ); - } // Add a log field if the "Create new revision" option is checked, or if the // current user has the ability to check that option.