Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2636298
media.php implode function
Closed

Comments

  • mtnetadmin started the conversation

    Hello

    Just a heads up...


    The PHP implode() function in "/wp-content/themes/pennews/inc/media.php" is throwing a notice because the order of arguments is incorrect - for now is automatically being correct by PHP but this will probably break in future versions of PHP and result in a fatal error.

    Changing:

    $string_end = implode( $array_end, ':300,300italic,400,400italic,500,500italic,700,700italic,800,800italic|' );

    to:

    $string_end = implode( ':300,300italic,400,400italic,500,500italic,700,700italic,800,800italic|', $array_end );

    Seems to fix it.  


    Regards

  •  501
    Penci replied

    Hi,

    Thank you for your all feedback.

    I update the fixed to the latest update version of PenNews theme

    Best Regards,

    PenciDesign