From 74295f1b4a8e3b0ba1588486eae20e82e1142c76 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Fri, 6 Jul 2007 17:01:45 +0000 Subject: [PATCH] issue29, shorten too long names git-svn-id: file:///var/lib/svn/phpfspot/trunk@167 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/phpfspot.class.php b/phpfspot.class.php index d6d3e69..4b304a1 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -114,9 +114,17 @@ class PHPFSPOT { public function getPhotoName($idx) { - $details = $this->get_photo_details($idx); + if($details = $this->get_photo_details($idx)) { + + $name = $details['name']; + + if(strlen($name) > 15) { + $name = substr($name, 0, 10) ."...". substr($name, -10); + } - return $details['name']; + return $name; + + } } // getPhotoName() -- 2.25.1