Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Viking

    (@vellengs)

    Hi grezom,
    I found the issue.
    Functions.php
    Code line: 358
    The substr function should be mb_substr.

    Thread Starter grezom

    (@grezom)

    Thank you. Issue.

    original:

    $item->title = (strlen($auction->title) > 18) ?
    substr($auction->title, 0, 16) . '...' : $auction->title;

    modify:

    $item->title = (strlen($auction->title) > 18) ?
    mb_substr($auction->title, 0, 16) . '...' : $auction->title;
    Plugin Author Viking

    (@vellengs)

    The plugin is updated

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Special chars in "All auction view"’ is closed to new replies.