Changeset 72 in subversion
- Timestamp:
- Nov 1, 2005 5:18:05 PM (8 years ago)
- Location:
- trunk/roundcubemail/program
- Files:
-
- 2 edited
-
js/app.js (modified) (3 diffs)
-
steps/mail/sendmail.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r63 r72 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) -
trunk/roundcubemail/program/steps/mail/sendmail.inc
r58 r72 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.
