Changeset 686 in subversion
- Timestamp:
- Aug 15, 2007 6:30:31 PM (6 years ago)
- Location:
- branches/devel-vnext/program/steps/mail
- Files:
-
- 4 edited
-
check_recent.inc (modified) (2 diffs)
-
compose.inc (modified) (1 diff)
-
func.inc (modified) (4 diffs)
-
move_del.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/devel-vnext/program/steps/mail/check_recent.inc
r651 r686 19 19 */ 20 20 21 rc_main::tfk_debug('recent!');21 //rc_main::tfk_debug('recent!'); 22 22 23 23 $registry = rc_registry::getInstance(); … … 27 27 28 28 //rc_main::tfk_debug('About to get some mailboxes.'); 29 rc_main::tfk_debug('Mailboxes: ' . var_export($a_mailboxes, true));29 //rc_main::tfk_debug('Mailboxes: ' . var_export($a_mailboxes, true)); 30 30 31 31 foreach ($a_mailboxes as $mbox_name) { -
branches/devel-vnext/program/steps/mail/compose.inc
r632 r686 37 37 $status = @unlink($_SESSION['compose']['attachments'][$id]['path']); 38 38 if ($status === false) { 39 rc_main::tfk_debug('Could not delete attachment.');39 //rc_main::tfk_debug('Could not delete attachment.'); 40 40 } 41 41 $_SESSION['compose']['attachments'][$id] = NULL; -
branches/devel-vnext/program/steps/mail/func.inc
r655 r686 220 220 221 221 222 // return html for a structured list <ul> for the mailbox tree 222 /** 223 * return html for a structured list <ul> for the mailbox tree 224 */ 223 225 function rcmail_render_folder_tree_html(&$arrFolders, &$special, &$mbox_name, $maxlength, $nestLevel=0) 224 226 { … … 260 262 261 263 // set special class for Sent, Drafts, Trash and Junk 262 if ($folder['id']==$CONFIG['sent_mbox']) 264 if ($folder['id']==$CONFIG['sent_mbox']) { 263 265 $class_name = 'sent'; 264 else if ($folder['id']==$CONFIG['drafts_mbox']) 266 } 267 else if ($folder['id']==$CONFIG['drafts_mbox']) { 265 268 $class_name = 'drafts'; 266 else if ($folder['id']==$CONFIG['trash_mbox']) 269 } 270 else if ($folder['id']==$CONFIG['trash_mbox']) { 267 271 $class_name = 'trash'; 268 else if ($folder['id']==$CONFIG['junk_mbox']) 272 } 273 else if ($folder['id']==$CONFIG['junk_mbox']) { 269 274 $class_name = 'junk'; 275 } 270 276 271 277 $js_name = htmlspecialchars(rc_main::JQ($folder['id'])); … … 303 309 /** 304 310 * Append a new list if it has subfolders. 311 * 312 * Work with a seperate list-entry (<li>) to combat giant 313 * onmouseover fuckups. 314 * 315 * @ignore 305 316 */ 306 317 if (!empty($folder['folders'])) { 307 $out .= "\n<ul>\n"; 308 $out .= rcmail_render_folder_tree_html($folder['folders'], $special, $mbox_name, $maxlength, $nestLevel+1) . "</ul>\n"; 318 $out .= '<li class="mailboxsub">' . "\n<ul>\n"; 319 $out .= rcmail_render_folder_tree_html($folder['folders'], $special, $mbox_name, $maxlength, $nestLevel+1); 320 $out .= "</ul>\n"; 321 $out .= '</li>' . "\n"; 309 322 } 310 323 … … 1293 1306 1294 1307 if (isset($MESSAGE) === false) { 1295 rc_main::tfk_debug('rcmail_message_headers: no $MESSAGE :(');1308 //rc_main::tfk_debug('rcmail_message_headers: no $MESSAGE :('); 1296 1309 return FALSE; 1297 1310 } -
branches/devel-vnext/program/steps/mail/move_del.inc
r629 r686 52 52 // unknown action or missing query param 53 53 else { 54 rc_main::tfk_debug('/ unknown action');54 //rc_main::tfk_debug('/ unknown action'); 55 55 exit; 56 56 }
Note: See TracChangeset
for help on using the changeset viewer.
