Changeset 30694e4 in github
- Timestamp:
- Sep 4, 2008 9:50:11 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 911e892
- Parents:
- 1518702
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/show.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rc8ae249 r30694e4 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2008/09/04 (alec) 5 ---------- 6 - Truncate very long (above 50 characters) attachment filenames when displaying 7 - Support \" and \\ in quoted strings when parsing BODYSTRUCTURE (mime.inc) 8 - Allow 'readonly' atributes in input and textarea (#1485312) 3 9 4 10 2008/09/03 (thomasb) -
program/steps/mail/show.inc
rb469a19 r30694e4 151 151 } 152 152 else { 153 if (rc_strlen($attach_prop->filename) > 50) { 154 $filename = rc_substr($attach_prop->filename, 0, 25) . '...' . rc_substr($attach_prop->filename, strlen($attach_prop->filename)-20, 20); 155 $title = $attach_prop->filename; 156 } else { 157 $filename = $attach_prop->filename; 158 $title = ''; 159 } 160 153 161 $ol .= html::tag('li', null, 154 162 html::a(array( … … 159 167 $attach_prop->mime_id, 160 168 $attach_prop->mimetype), 169 'title' => Q($title), 161 170 ), 162 Q($ attach_prop->filename)));171 Q($filename))); 163 172 } 164 173 }
Note: See TracChangeset
for help on using the changeset viewer.
