Make WordPress Core

Ticket #48817: 48817.diff

File 48817.diff, 426 bytes (added by shaampk1, 6 years ago)

sprintf function: fixed the missing comma for $replacement var in is_null check.

  • wp-includes/functions.php

     
    49574957                                        __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
    49584958                                        $hook,
    49594959                                        $version,
    4960                                         $replacement
     4960                                        $replacement,
    49614961                                ) . $message,
    49624962                                E_USER_DEPRECATED
    49634963                        );