'); $fieldValue = str_replace( '[tag:mediapath]', ABS_PATH . 'templates/' . (defined('THEME_FOLDER') ? THEME_FOLDER : DEFAULT_THEME_FOLDER) . '/', $fieldValue ); } if (is_numeric($maxlength) && $maxlength != 0) { if ($maxlength < 0) { $fieldValue = str_replace(array("\r\n", "\n", "\r"), ' ', $fieldValue); $fieldValue = strip_tags($fieldValue, ''); $fieldValue = preg_replace('/ +/', ' ', $fieldValue); $maxlength = abs($maxlength); } $fieldValue = mb_substr($fieldValue, 0, $maxlength) . (strlen($fieldValue) > $maxlength ? '... ' : ''); } return $fieldValue; } }