Changeset c8a21d6 in github
- Timestamp:
- Sep 5, 2008 3:27:23 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- c505e59
- Parents:
- 5ec762a
- Files:
-
- 5 edited
-
index.php (modified) (2 diffs)
-
program/include/main.inc (modified) (1 diff)
-
program/include/rcube_json_output.php (modified) (1 diff)
-
program/include/rcube_template.php (modified) (1 diff)
-
program/steps/mail/list.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
index.php
r48aff91 rc8a21d6 30 30 // include environment 31 31 require_once 'program/include/iniset.php'; 32 33 // define global vars34 $OUTPUT_TYPE = 'html';35 32 36 33 // init application and start session with requested task … … 95 92 96 93 // log successful login 97 if ($RCMAIL->config->get('log_logins') && $RCMAIL->config->get('debug_level') & 1) 98 console(sprintf('Successful login for %s (id %d) from %s', 99 trim(get_input_value('_user', RCUBE_INPUT_POST), ' '), 100 $_SESSION['user_id'], 101 $_SERVER['REMOTE_ADDR'])); 94 if ($RCMAIL->config->get('log_logins')) { 95 write_log('userlogins', sprintf('Successful login for %s (id %d) from %s', 96 $RCMAIL->user->get_username(), 97 $RCMAIL->user->ID, 98 $_SERVER['REMOTE_ADDR'])); 99 } 102 100 103 101 // send redirect -
program/include/main.inc
r62784a2 rc8a21d6 318 318 } 319 319 if (!$enctype) 320 $enctype = $ GLOBALS['OUTPUT_TYPE'];320 $enctype = $OUTPUT->type; 321 321 322 322 // encode for plaintext -
program/include/rcube_json_output.php
rf7a122f rc8a21d6 35 35 private $commands = array(); 36 36 37 public $type = 'js'; 37 38 public $ajax_call = true; 38 39 -
program/include/rcube_template.php
rc8ae249 rc8a21d6 40 40 var $object_handlers = array(); 41 41 42 public $type = 'html'; 42 43 public $ajax_call = false; 43 44 -
program/steps/mail/list.inc
rac5d15d rc8a21d6 20 20 */ 21 21 22 $OUTPUT_TYPE = 'js';23 22 // is there a sort type for this request? 24 23 if ($sort = get_input_value('_sort', RCUBE_INPUT_GET))
Note: See TracChangeset
for help on using the changeset viewer.
