Skip to content

Bug with iconv_strlen in assets : info.panel.phtml #263

Description

@daemind

Hi,

There's a problem with the info panel
on line 60, you use iconv_strlen, or iconv_strlen could return a false value (that was my case),
and finally all the tracy bar doesn't appear
<?php if (iconv_strlen((string) $val, 'UTF-8') > 25): ?>

Could you change it to mb_strlen which return an integer in all case ?
<?php if (mb_strlen((string) $val, 'UTF-8') > 25): ?>

By advance thank you,
Morad

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions