• Resolved tsf999

    (@tsf999)


    Hello,

    First of all thanks for this update that includes GDPR compliance!
    There is a little bug though. Gallery – Description field has more than one line:

    aaaaa
    bbbbb

    With this update will be displayed as:
    aaaaabbbbb

    Before it worked as expected, ie. the new line code would be respected.

    Hope you could have a look at it.

    Best regards
    Peter

Viewing 1 replies (of 1 total)
  • Dear @tsf999,

    Thank you for the report!

    You can fix that issue by editing frontend/models/BWGModelGalleryBox.php file.
    Please replace
    $row->description = esc_html(preg_replace('/\t|\\n|\\r/i', '', $row->description));

    with

    $row->description = esc_html(preg_replace('/\t|\\r/i', '', $row->description));

    Sincerely,

Viewing 1 replies (of 1 total)
  • The topic ‘1.5.63 issue – new line in Description’ is closed to new replies.