To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Show
Ignore:
Timestamp:
07/21/10 15:01:26 (22 months ago)
Author:
johnnyoffline
Message:

fixed a bug with aString.class.php where the ellipses encoded character getting appended to truncated strings was missing the ending semicolon. Fixed in 1.4 and the trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostrophePlugin/branches/1.4/lib/toolkit/aString.class.php

    r1654 r1811  
    4343                if ($append_ellipsis == true && $num_words > $word_limit) 
    4444                { 
    45                         $string .= '&hellip'; 
     45                        $string .= '…'; 
    4646                } 
    4747