Changeset 3555 in subversion
- Timestamp:
- Apr 23, 2010 8:25:44 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/program/include/rcmail.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcmail.php
r3466 r3555 351 351 352 352 // set keep-alive/check-recent interval 353 if ($ keep_alive = $this->session->get_keep_alive()) {353 if ($this->session && ($keep_alive = $this->session->get_keep_alive())) { 354 354 $this->output->set_env('keep_alive', $keep_alive); 355 355 } … … 482 482 public function session_init() 483 483 { 484 // session started (Installer?) 485 if (session_id()) 486 return; 487 484 488 $lifetime = $this->config->get('session_lifetime', 0) * 60; 485 489 … … 523 527 public function session_configure() 524 528 { 529 if (!$this->session) 530 return; 531 525 532 $lifetime = $this->config->get('session_lifetime', 0) * 60; 526 533 … … 981 988 982 989 $log = $this->task . ($this->action ? '/'.$this->action : '') . ($mem ? " [$mem]" : ''); 983 rcube_print_time(RCMAIL_START, $log); 990 if (defined('RCMAIL_START')) 991 rcube_print_time(RCMAIL_START, $log); 992 else 993 console($log); 984 994 } 985 995 }
Note: See TracChangeset
for help on using the changeset viewer.
