summaryrefslogtreecommitdiff
path: root/inc/common.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2009-07-27 19:23:05 +0200
committerAndreas Gohr <andi@splitbrain.org>2009-07-27 19:23:05 +0200
commita5d27328e29b8f4f7ffb3a6444db1b4fc727483d (patch)
tree91a981c1522ca2e8817b7a77b2a71c638020b21a /inc/common.php
parent469ad2731e70126fa961494dc9c8d558c77326fb (diff)
downloadrpg-a5d27328e29b8f4f7ffb3a6444db1b4fc727483d.tar.gz
rpg-a5d27328e29b8f4f7ffb3a6444db1b4fc727483d.tar.bz2
changed namespace shortening character to ellipsis FS#1734
Ignore-this: c57d8ca5898c396f6315e8faeeb7c587 Looks like the Windows fonts are far less complete than I thought :-/ darcs-hash:20090727172305-7ad00-1614baf9238c73e489302d7e91ca8495f26ed7f0.gz
Diffstat (limited to 'inc/common.php')
-rw-r--r--inc/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php
index 5c95115a6..f8a8f4e77 100644
--- a/inc/common.php
+++ b/inc/common.php
@@ -1361,7 +1361,7 @@ function preg_quote_cb($string){
* @param int $min minimum number of chars to have left for middle shortening
* @param string $char the shortening character to use
*/
-function shorten($keep,$short,$max,$min=9,$char='⌇'){
+function shorten($keep,$short,$max,$min=9,$char='…'){
$max = $max - utf8_strlen($keep);
if($max < $min) return $keep;
$len = utf8_strlen($short);