You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes this data is not shown at all.
plugin.php:232
// Truncate the field's contents to 30 characters and add it to the post's info array. //if (strlen($field["data"]) > 30) $field["data"] = substr($field["data"], 0, 30)."..."; if (mb_strlen($field["data"],'UTF-8') > 30) $field["data"] = mb_substr($field["data"], 0, 30, 'UTF-8')."...";
The text was updated successfully, but these errors were encountered:
Sometimes this data is not shown at all.
plugin.php:232
// Truncate the field's contents to 30 characters and add it to the post's info array.
//if (strlen($field["data"]) > 30) $field["data"] = substr($field["data"], 0, 30)."...";
if (mb_strlen($field["data"],'UTF-8') > 30) $field["data"] = mb_substr($field["data"], 0, 30, 'UTF-8')."...";
The text was updated successfully, but these errors were encountered: