From 168416ebda1a9eaa8402dec741b1789a7556af12 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 3 Aug 2012 16:40:05 +0000 Subject: [PATCH] git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@58 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6 --- .../plugins/special-recent-posts/classes/class-main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/plugins/special-recent-posts/classes/class-main.php b/wp-content/plugins/special-recent-posts/classes/class-main.php index 79e0efd..b0038b4 100644 --- a/wp-content/plugins/special-recent-posts/classes/class-main.php +++ b/wp-content/plugins/special-recent-posts/classes/class-main.php @@ -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':