Make WordPress Core

Ticket #45416: 45416.3.patch

File 45416.3.patch, 1.1 KB (added by mukesh27, 7 years ago)

Convert tab to space as suggested by @desrosj

  • wp-admin/includes/misc.php

    diff -Naur wp-admin/includes/misc.php wp-admin/includes/misc.php
     
    19351935                 * @since 4.9.6
    19361936                 * @since 5.0.0 Added the `$strings`, `$description`, and `$blocks` parameters.
    19371937                 *
    1938                  * @param $content     string The default policy content.
    1939                  * @param $strings     array  An array of privacy policy content strings.
    1940                  * @param $description bool  Whether policy descriptions should be included.
    1941                  * @param $blocks      bool   Whether the content should be formatted for the block editor.
     1938                 * @param string $content    The default policy content.
     1939                 * @param array  $strings     An array of privacy policy content strings.
     1940                 * @param bool   $description Whether policy descriptions should be included.
     1941                 * @param bool   $blocks      Whether the content should be formatted for the block editor.
    19421942                 */
    19431943                return apply_filters( 'wp_get_default_privacy_policy_content', $content, $strings, $description, $blocks );
    19441944        }