Changeset fc73746 in github


Ignore:
Timestamp:
Aug 10, 2007 9:51:53 AM (6 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
e715986
Parents:
b48bd06
Message:

Fix compose function from address book + mozilla compatibility

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r31d9efd rfc73746  
    99- Protect AJAX request from being fetched by a foreign site (XSS) 
    1010- Make autocomplete for loginform configurable by the skin template 
     11- Fix compose function from address book (closes #1484426) 
    1112 
    1213 
     
    2021- Added note to INSTALL about .htaccess limiting upload_max_filesize 
    2122- Raised .htaccess upload_max_filesize from 2M to 5M to differ from default php.ini 
    22 - Increased "mailboxcontrols" mail.css width from 160 to 170px to fix non-english languages  
     23- Increased "mailboxcontrols" mail.css width from 160 to 170px to fix non-english languages (#1484499) 
    2324- Fixed empty-message sending with TinyMCE plain-text mode, or if it's not installed 
    2425 
  • program/js/app.js

    r31d9efd rfc73746  
    22902290 
    22912291    // send request to server 
    2292     var url = (src ? '&_source='+urlencode(src) : '') + (page ? '&_page='+page : ''); 
     2292    var url = (src ? '_source='+urlencode(src) : '') + (page ? (src?'&':'') + '_page='+page : ''); 
    22932293    this.env.source = src; 
    22942294     
  • program/steps/addressbook/mailto.inc

    r41bece1 rfc73746  
    2626if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && $CONTACTS->ready) 
    2727{ 
     28  $CONTACTS->set_page(1); 
     29  $CONTACTS->set_pagesize(100); 
    2830  $recipients = $CONTACTS->search($CONTACTS->primary_key, $cid); 
    2931 
  • skins/default/mail.css

    r4b9efbb rfc73746  
    656656  margin: 0px; 
    657657  padding: 0px; 
     658  white-space: -moz-pre-wrap !important; 
    658659  white-space: pre; 
    659660  font-family: monospace; 
Note: See TracChangeset for help on using the changeset viewer.