Changeset e8b2579 in github


Ignore:
Timestamp:
Dec 14, 2011 1:28:39 PM (18 months ago)
Author:
alecpl <alec@…>
Branches:
release-0.7
Children:
89dc8499
Parents:
faf5fb4
Message:
  • Aplied fixes from trunk up to r5615
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    re02694c re8b2579  
    11CHANGELOG Roundcube Webmail 
    22=========================== 
     3 
     4- Fix broken CREATE INDEX queries in SQLite DDL files (#1488255) 
    35 
    46RELEASE 0.7 
  • SQL/sqlite.initial.sql

    r3ad2b1b re8b2579  
    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

    r3ad2b1b re8b2579  
    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; 
  • installer/rcube_install.php

    r77449d0 re8b2579  
    505505    return $out; 
    506506  } 
    507    
     507 
    508508  /** 
    509509   * Create a HTML dropdown to select a previous version of Roundcube 
     
    512512  { 
    513513    $select = new html_select($attrib); 
    514     $select->add(array('0.1-stable', '0.1.1', '0.2-alpha', '0.2-beta', '0.2-stable', '0.3-stable', '0.3.1', '0.4-beta', '0.4.2', '0.5-beta', '0.5', '0.5.1')); 
     514    $select->add(array( 
     515        '0.1-stable', '0.1.1', 
     516        '0.2-alpha', '0.2-beta', '0.2-stable', 
     517        '0.3-stable', '0.3.1', 
     518        '0.4-beta', '0.4.2', 
     519        '0.5-beta', '0.5', '0.5.1', 
     520        '0.6-beta', '0.6', 
     521        '0.7-beta', '0.7', 
     522    )); 
    515523    return $select; 
    516524  } 
    517    
     525 
    518526  /** 
    519527   * Return a list with available subfolders of the skin directory 
Note: See TracChangeset for help on using the changeset viewer.