thomascube
2008-02-07 6f2f2d0ffdf21ac0dce85b5dae8809a49b14a7a2
program/include/rcube_shared.inc
@@ -557,9 +557,9 @@
 * @param string Input string
 * @param int    Max. length
 * @param string Replace removed chars with this
 * @return string Abbrevated string
 * @return string Abbreviated string
 */
function abbrevate_string($str, $maxlength, $place_holder='...')
function abbreviate_string($str, $maxlength, $place_holder='...')
{
  $length = rc_strlen($str);
  $first_part_length = floor($maxlength/2) - rc_strlen($place_holder);