Ticket #1485187: rc-memory.diff
| File rc-memory.diff, 1.1 kB (added by jeblair, 6 months ago) |
|---|
-
index.php
33 33 // define global vars 34 34 $OUTPUT_TYPE = 'html'; 35 35 36 // init application and start session with requested task 37 $RCMAIL = rcmail::get_instance(); 38 36 39 // set output buffering 37 40 if ($RCMAIL->action != 'get' && $RCMAIL->action != 'viewsource') { 38 41 // use gzip compression if supported … … 47 50 } 48 51 49 52 50 // init application and start session with requested task51 $RCMAIL = rcmail::get_instance();52 53 53 // init output class 54 54 $OUTPUT = (!empty($_GET['_remote']) || !empty($_POST['_remote'])) ? $RCMAIL->init_json() : $RCMAIL->load_gui((!empty($_GET['_framed']) || !empty($_POST['_framed']))); 55 55 -
program/lib/imap.inc
=== modified file 'program/lib/imap.inc'
2396 2396 } else if ($mode == 2) { 2397 2397 echo rtrim($line, "\t\r\n\0\x0B") . "\n"; flush(); 2398 2398 } else if ($mode == 3) { 2399 echo base64_decode($line); flush();2399 echo base64_decode($line); 2400 2400 } 2401 2401 } 2402 2402 }
