Make WordPress Core

Ticket #16707: 16707.3.diff

File 16707.3.diff, 535 bytes (added by MikeHansenMe, 11 years ago)

Patch to fix the warning in previous screenshot

  • src/wp-includes/class-wp-theme.php

     
    673673                                        /* translators: used between list items, there is a space after the comma */
    674674                                        $comma = __( ', ' );
    675675                                }
    676                                 $value = implode( $comma, $value );
     676                                if( is_array( $value ) ){
     677                                        $value = implode( $comma, $value );
     678                                }
    677679                                break;
    678680                        case 'ThemeURI' :
    679681                        case 'AuthorURI' :