summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-03-18 14:26:30 +0100
committerSarven Capadisli <csarven@status.net>2010-03-18 14:26:30 +0100
commit052466ceab9666b30b6ee38bbb5774b1070618ad (patch)
tree35e8eb77b566a0bb9289ffc95f7d7572c53991b7
parentd8a533274fa6354072a2acb66bd1574ecaec2c02 (diff)
Using &#8230; (hellip) instead of "more" for link text
-rw-r--r--plugins/OStatus/classes/Ostatus_profile.php11
-rw-r--r--theme/base/css/display.css6
2 files changed, 4 insertions, 13 deletions
diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php
index 7ea8ff633..e47b6973d 100644
--- a/plugins/OStatus/classes/Ostatus_profile.php
+++ b/plugins/OStatus/classes/Ostatus_profile.php
@@ -546,7 +546,6 @@ class Ostatus_profile extends Memcached_DataObject
$shortSummary = substr($shortSummary,
0,
Notice::maxContent() - (mb_strlen($url) + 2));
- $shortSummary .= '…';
$content = $shortSummary . ' ' . $url;
// We mark up the attachment link specially for the HTML output
@@ -554,12 +553,10 @@ class Ostatus_profile extends Memcached_DataObject
$attachUrl = common_local_url('attachment',
array('attachment' => $attachment->id));
$rendered = common_render_text($shortSummary) .
- ' ' .
- '<a href="' .
- htmlspecialchars($attachUrl) .
- '" class="attachment more">' .
- // TRANS: expansion link for too-long remote messages
- htmlspecialchars(_m('more')) .
+ '<a href="' . htmlspecialchars($attachUrl) .'"'.
+ ' class="attachment more"' .
+ ' title="'. htmlspecialchars(_m('Show more')) . '">' .
+ '&#8230;' .
'</a>';
}
}
diff --git a/theme/base/css/display.css b/theme/base/css/display.css
index 9044021f5..757ce7ff1 100644
--- a/theme/base/css/display.css
+++ b/theme/base/css/display.css
@@ -1288,12 +1288,6 @@ padding-left:16px;
.notice .attachment.more {
padding-left:0;
}
-.notice .attachment.more:before {
-content:'( ';
-}
-.notice .attachment.more:after {
-content:' )';
-}
.notice .attachment img {
position:absolute;
top:18px;