Changeset 407dcf9 in github


Ignore:
Timestamp:
Oct 18, 2008 6:56:11 AM (5 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
ebf316a
Parents:
bfdbcf5
Message:
  • Fix html signature formatting when identity save error occured (#1485426)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r701b9a7 r407dcf9  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42008/10/18 (alec) 
     5---------- 
     6- Fix html2text class autoloading on Windows (#1485505) 
     7- Fix html signature formatting when identity save error occured (#1485426) 
    38 
    492008/10/15 (alec) 
  • program/include/main.inc

    rd99b935 r407dcf9  
    551551  // use value from post 
    552552  if (!empty($_POST[$fname])) 
    553     $value = get_input_value($fname, RCUBE_INPUT_POST); 
     553    $value = get_input_value($fname, RCUBE_INPUT_POST, 
     554            $type == 'textarea' && strpos($attrib['class'], 'mce_editor')!==false ? true : false); 
    554555 
    555556  $out = $input->show($value); 
  • program/steps/settings/save_identity.inc

    rf645ce1 r407dcf9  
    2929  { 
    3030  $OUTPUT->show_message('formincomplete', 'warning'); 
    31   rcmail_overwrite_action('edit-identitiy'); 
     31  rcmail_overwrite_action('edit-identity'); 
    3232  return; 
    3333  } 
     
    7272    // show error message 
    7373    $OUTPUT->show_message('errorsaving', 'error'); 
    74     rcmail_overwrite_action('edit-identitiy'); 
     74    rcmail_overwrite_action('edit-identity'); 
    7575    return; 
    7676  } 
Note: See TracChangeset for help on using the changeset viewer.