Make WordPress Core

Ticket #35700: 357001.patch

File 357001.patch, 1.4 KB (added by sebastian.pisula, 9 years ago)
  • wp-includes/kses.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    15871587 *
    15881588 * @since 4.4.2
    15891589 *
    1590  * @param mixed $value The array or string to filter.
    1591  * @return mixed $value The filtered content.
     1590 * @param mixed $data The array, object, or scalar.
     1591 * @return mixed The filtered content.
    15921592 */
    15931593function wp_kses_post_deep( $data ) {
    15941594        return map_deep( $data, 'wp_kses_post' );
  • wp-includes/formatting.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    38883888 *
    38893889 * @param mixed    $value    The array, object, or scalar.
    38903890 * @param callable $callback The function to map onto $value.
    3891  * @return The value with the callback applied to all non-arrays and non-objects inside it.
     3891 * @return mixed The value with the callback applied to all non-arrays and non-objects inside it.
    38923892 */
    38933893function map_deep( $value, $callback ) {
    38943894        if ( is_array( $value ) ) {