|
@@ -576,7 +576,8 @@ function prepareMessageList(&$aMailbox, $aProps) {
|
|
// FIXME: don't break 8bit symbols and html entities during truncation
|
|
// FIXME: don't break 8bit symbols and html entities during truncation
|
|
if (isset($aColumnDesc[$k]['truncate']) && $aColumnDesc[$k]['truncate']) {
|
|
if (isset($aColumnDesc[$k]['truncate']) && $aColumnDesc[$k]['truncate']) {
|
|
$sTmp = truncateWithEntities($value, $aColumnDesc[$k]['truncate']-$iIndent);
|
|
$sTmp = truncateWithEntities($value, $aColumnDesc[$k]['truncate']-$iIndent);
|
|
- $title = ($sTmp != $value) ? $value : '';
|
|
|
|
|
|
+ // drop any double spaces since these will be displayed in the title
|
|
|
|
+ $title = ($sTmp != $value) ? preg_replace('/\s{2,}/', ' ', $value) : '';
|
|
$value = $sTmp;
|
|
$value = $sTmp;
|
|
}
|
|
}
|
|
/* generate the link to the message */
|
|
/* generate the link to the message */
|
|
@@ -1381,4 +1382,4 @@ function attachSelectedMessages($imapConnection,$aMsgHeaders) {
|
|
return $composesession;
|
|
return $composesession;
|
|
}
|
|
}
|
|
|
|
|
|
-?>
|
|
|
|
|
|
+?>
|