Changeset 09941ea in github
- Timestamp:
- Oct 13, 2005 5:53:33 PM (8 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 455c2bd
- Parents:
- 520c36a
- Location:
- program
- Files:
-
- 6 edited
-
include/rcube_imap.inc (modified) (1 diff)
-
js/app.js (modified) (3 diffs)
-
localization/en/messages.inc (modified) (1 diff)
-
steps/mail/compose.inc (modified) (2 diffs)
-
steps/mail/func.inc (modified) (1 diff)
-
steps/mail/move_del.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_imap.inc
r520c36a r09941ea 580 580 581 581 return $deleted; 582 583 582 } 584 583 -
program/js/app.js
r42b1135 r09941ea 7 7 | Licensed under the GNU GPL | 8 8 | | 9 | Modified: 2005/ 08/19(tbr) |9 | Modified: 2005/10/13 (tbr) | 10 10 | | 11 11 +-----------------------------------------------------------------------+ … … 566 566 case 'nextmessage': 567 567 if (this.env.next_uid) 568 location.href = this.env.comm_path+'&_action=show&_uid='+this.env.next_uid+'&_mbox='+this.env.mailbox; 568 this.show_message(this.env.next_uid); 569 //location.href = this.env.comm_path+'&_action=show&_uid='+this.env.next_uid+'&_mbox='+this.env.mailbox; 569 570 break; 570 571 571 572 case 'previousmessage': 572 573 if (this.env.prev_uid) 573 location.href = this.env.comm_path+'&_action=show&_uid='+this.env.prev_uid+'&_mbox='+this.env.mailbox; 574 this.show_message(this.env.prev_uid); 575 //location.href = this.env.comm_path+'&_action=show&_uid='+this.env.prev_uid+'&_mbox='+this.env.mailbox; 574 576 break; 575 577 … … 965 967 if (id) 966 968 { 967 this.set_busy(true );969 this.set_busy(true, 'loading'); 968 970 target.location.href = this.env.comm_path+'&_action=show&_uid='+id+'&_mbox='+escape(this.env.mailbox)+add_url; 969 971 } -
program/localization/en/messages.inc
r30233b8 r09941ea 53 53 $messages['errorsaving'] = 'An error occured while saving'; 54 54 55 $messages['errormoving'] = 'Could not move the message'; 56 57 $messages['errordeleting'] = 'Could not delete the message'; 58 55 59 56 60 ?> -
program/steps/mail/compose.inc
r520c36a r09941ea 405 405 else if (isset($REPLY_MESSAGE['subject'])) 406 406 { 407 if ( strpos($REPLY_MESSAGE['subject'], 'Re:')===0)407 if (eregi('^re:', $REPLY_MESSAGE['subject'])) 408 408 $subject = $REPLY_MESSAGE['subject']; 409 409 else … … 413 413 // create a forward-subject 414 414 else if (isset($FORWARD_MESSAGE['subject'])) 415 $subject = 'Fwd: '.$FORWARD_MESSAGE['subject']; 415 { 416 if (eregi('^fwd:', $REPLY_MESSAGE['subject'])) 417 $subject = $FORWARD_MESSAGE['subject']; 418 else 419 $subject = 'Fwd: '.$FORWARD_MESSAGE['subject']; 420 } 416 421 417 422 -
program/steps/mail/func.inc
r597170f r09941ea 550 550 $convert_patterns = $convert_replaces = $replace_strings = array(); 551 551 552 $url_chars = 'a-z0-9_\-\+\*\$\/&%=@# ';552 $url_chars = 'a-z0-9_\-\+\*\$\/&%=@#:'; 553 553 $url_chars_within = '\?\.~,!'; 554 554 -
program/steps/mail/move_del.inc
r30233b8 r09941ea 31 31 { 32 32 // send error message 33 $commands = "this.list_mailbox();\n"; 34 $commands .= show_message('errormoving', 'error'); 35 rcube_remote_response($commands); 33 36 exit; 34 37 } … … 44 47 { 45 48 // send error message 49 $commands = "this.list_mailbox();\n"; 50 $commands .= show_message('errordeleting', 'error'); 51 rcube_remote_response($commands); 46 52 exit; 47 53 }
Note: See TracChangeset
for help on using the changeset viewer.
