summaryrefslogtreecommitdiffstats
path: root/lib/ui.lib.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-28 20:40:07 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-28 20:40:07 +0000
commitf4ab9bad1a8bee3b8ed43edceb02d526ede0a7fc (patch)
tree79ee6a780b2dc46de5194bc87a219c3f55815cde /lib/ui.lib.php
parent13852c51ea25a25e3629c7df79894ea51c91f3dd (diff)
downloadampache-f4ab9bad1a8bee3b8ed43edceb02d526ede0a7fc.tar.gz
ampache-f4ab9bad1a8bee3b8ed43edceb02d526ede0a7fc.tar.bz2
ampache-f4ab9bad1a8bee3b8ed43edceb02d526ede0a7fc.zip
fixed rss feeds (Thx Purdyk) and tweaked the truncate_with_ellipse
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r--lib/ui.lib.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php
index 859f90f3..efdaa736 100644
--- a/lib/ui.lib.php
+++ b/lib/ui.lib.php
@@ -176,8 +176,10 @@ function show_local_control () {
* @catagory General
* @author Nedko Arnaudov
*/
-function truncate_with_ellipsis($text, $max=27) {
+function truncate_with_ellipsis($text, $max='') {
+ $max = $max ? $max : '27';
+
/* If we want it to be shorter than three, just throw it back */
if ($max > 3) {