git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@58 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6

This commit is contained in:
David Arranz 2012-08-03 16:40:05 +00:00
parent e2a2b9cab6
commit 168416ebda

View File

@ -248,13 +248,13 @@ class SpecialRecentPosts {
case 'words':
// Return normal title using 'words cut'.
return $this->substrWords($this->srp_sanitize($post->post_title), $title_length);
return $this->substrWords($this->srp_sanitize($post->post_title), $title_length).'...';
break;
case 'chars':
// Return normal title using 'characters cut'.
return substr($this->srp_sanitize($post->post_title), 0, $title_length);
return substr($this->srp_sanitize($post->post_title), 0, $title_length).'...';
break;
case 'fulltitle':