Changeset fd660ac in github
- Timestamp:
- Nov 1, 2005 5:18:05 PM (8 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 6a35c82
- Parents:
- 36df57c
- Location:
- program
- Files:
-
- 2 edited
-
js/app.js (modified) (3 diffs)
-
steps/mail/sendmail.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
r01bb031 rfd660ac 7 7 | Licensed under the GNU GPL | 8 8 | | 9 | Modified: 2005/1 0/26(roundcube) |9 | Modified: 2005/11/01 (roundcube) | 10 10 | | 11 11 +-----------------------------------------------------------------------+ … … 1204 1204 { 1205 1205 this.message_rows[uid].classname += ' unread'; 1206 if (!this.in_selection(uid))1207 this.message_rows[uid].obj.className += ' unread'; 1206 this.set_classname(this.message_rows[uid].obj, 'unread', true); 1207 1208 1208 if (this.env.unreadicon) 1209 1209 icn_src = this.env.unreadicon; … … 1212 1212 { 1213 1213 this.message_rows[uid].classname = this.message_rows[uid].classname.replace(/\s*unread/, ''); 1214 if (!this.in_selection(uid)) 1215 this.message_rows[uid].obj.className = this.message_rows[uid].obj.className.replace(/\s*unread/, ''); 1214 this.set_classname(this.message_rows[uid].obj, 'unread', false); 1216 1215 1217 1216 if (this.message_rows[uid].replied && this.env.repliedicon) -
program/steps/mail/sendmail.inc
rd7cb774 rfd660ac 195 195 196 196 $header_str = $MAIL_MIME->txtHeaders($headers_php); 197 $sent = mail($mailto, $msg_subject, $msg_body, $header_str, "-f$from"); 197 198 if(ini_get('safe_mode')) 199 $sent = mail($mailto, $msg_subject, $msg_body, $header_str); 200 else 201 $sent = mail($mailto, $msg_subject, $msg_body, $header_str, "-f$from"); 198 202 } 199 203
Note: See TracChangeset
for help on using the changeset viewer.
