Changeset bd9190a6 in github


Ignore:
Timestamp:
Dec 14, 2011 1:25:44 PM (18 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
b540ed1
Parents:
7177b52
Message:
  • Fix broken CREATE INDEX queries in SQLite DDL files (#1488255)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r854397b rbd9190a6  
    22=========================== 
    33 
    4 - Make Roundcube render the Email Standards Project Acid Test correctly 
    54- Deprecate $DB, $USER, $IMAP global variables, Use $RCMAIL instead 
    65- Add option to set default font for HTML message (#1484137) 
    76- Fix issues with big memory allocation of IMAP results 
     7- Prevent from memory_limit exceeding when trying to parse big messages bodies (#1487424) 
     8- Add possibility to add SASL mechanisms for SMTP in smtp_connect hook (#1487937) 
     9- Mark (with different color) folders with recent messages (#1486234) 
     10- TinyMCE updated to 3.4.6 
     11 
     12RELEASE 0.7 
     13----------- 
     14- Make Roundcube render the Email Standards Project Acid Test correctly 
    815- Replace prompt() with jQuery UI dialog (#1485135) 
    916- Fix navigation in messages search results 
     
    1926- Fix so TEXT key will remove all HEADER keys in IMAP SEARCH (#1488208) 
    2027- Fix handling contact photo url with https:// prefix (#1488202) 
    21 - Prevent from memory_limit exceeding when trying to parse big messages bodies (#1487424) 
    22 - Add possibility to add SASL mechanisms for SMTP in smtp_connect hook (#1487937) 
    23 - Mark (with different color) folders with recent messages (#1486234) 
    2428- Fix possible infinite redirect on attachment preview (#1488199) 
    2529- Improved clickjacking protection for browsers which don't support X-Frame-Options headers 
     
    2832- Fixed bug where session ID's length was limited to 40 characters (#1488196) 
    2933- Added About tab in Settings 
    30 - TinyMCE: 
    31   - updated to 3.4.6 
    32   - security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 
     34- TinyMCE security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 
    3335 
    3436RELEASE 0.7-beta 
  • SQL/sqlite.initial.sql

    rb8ae0ecb rbd9190a6  
    148148); 
    149149 
    150 CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name); 
     150CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); 
    151151 
    152152-- -------------------------------------------------------- 
  • SQL/sqlite.update.sql

    rf450743 rbd9190a6  
    247247); 
    248248 
    249 CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name); 
     249CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); 
    250250 
    251251DROP TABLE messages; 
Note: See TracChangeset for help on using the changeset viewer.