Verified Commit ff47fed7 authored by Dave Long's avatar Dave Long
Browse files

docs: #3560570 Fix documenation URLs that are 404, part 2

By: quietone
(cherry picked from commit 02e8d30d)
parent 67e08e31
Loading
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -299,10 +299,9 @@ INSTALLATION
   Drupal documentation files in the installation directory, substituting the
   name of each file for CHANGELOG.txt in the example.

   For more information on setting file permissions, see "Modifying Linux,
   Unix, and Mac file permissions" (https://www.drupal.org/node/202483) or
   "Modifying Windows file permissions" (https://www.drupal.org/node/202491) in
   the Drupal.org online documentation.
   For more information on setting file permissions, see "Securing file
   permissions and ownership" (https://www.drupal.org/node/3092168) in the
   Drupal.org online documentation.

7. Set up independent "cron" maintenance jobs.

+0 −2
Original line number Diff line number Diff line
@@ -47,8 +47,6 @@
 * ];
 * @endcode
 *
 * See https://www.drupal.org/node/945102 for a full explanation.
 *
 * @see \Drupal\Core\Render\Element\Table
 */
#[FormElement('tableselect')]
+0 −3
Original line number Diff line number Diff line
@@ -16,9 +16,6 @@ interface ElementInfoManagerInterface extends DiscoveryInterface {
   * matching theme hook, which should be registered with hook_theme() as
   * normal.
   *
   * For more information about custom element types see the explanation at
   * https://www.drupal.org/node/169815.
   *
   * @param string $type
   *   The machine name of an element type plugin.
   *
+0 −2
Original line number Diff line number Diff line
@@ -211,8 +211,6 @@ public function setInitialAccountId($account_id) {
   *
   * @return \Drupal\Core\Session\AccountInterface|null
   *   An account or NULL if none is found.
   *
   * @see https://www.drupal.org/node/2430447
   */
  protected function loadUserEntity($account_id) {
    return \Drupal::entityTypeManager()->getStorage('user')->load($account_id);
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ public function php() {
      $output = ob_get_clean();
    }
    else {
      $output = $this->t('The phpinfo() function is disabled. For more information, visit the <a href=":phpinfo">Enabling and disabling phpinfo()</a> handbook page.', [':phpinfo' => 'https://www.drupal.org/node/243993']);
      $output = $this->t('The phpinfo() function is disabled. See <a href=":url" target="_blank">PHP documentation</a>.', [':url' => 'https://www.php.net/manual/function.phpinfo.php']);
    }
    return new Response($output);
  }
Loading