Changeset e8b2579 in github
- Timestamp:
- Dec 14, 2011 1:28:39 PM (18 months ago)
- Branches:
- release-0.7
- Children:
- 89dc8499
- Parents:
- faf5fb4
- Files:
-
- 4 edited
-
CHANGELOG (modified) (1 diff)
-
SQL/sqlite.initial.sql (modified) (1 diff)
-
SQL/sqlite.update.sql (modified) (1 diff)
-
installer/rcube_install.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
re02694c re8b2579 1 1 CHANGELOG Roundcube Webmail 2 2 =========================== 3 4 - Fix broken CREATE INDEX queries in SQLite DDL files (#1488255) 3 5 4 6 RELEASE 0.7 -
SQL/sqlite.initial.sql
r3ad2b1b re8b2579 148 148 ); 149 149 150 CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name);150 CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); 151 151 152 152 -- -------------------------------------------------------- -
SQL/sqlite.update.sql
r3ad2b1b re8b2579 247 247 ); 248 248 249 CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name);249 CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); 250 250 251 251 DROP TABLE messages; -
installer/rcube_install.php
r77449d0 re8b2579 505 505 return $out; 506 506 } 507 507 508 508 /** 509 509 * Create a HTML dropdown to select a previous version of Roundcube … … 512 512 { 513 513 $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 )); 515 523 return $select; 516 524 } 517 525 518 526 /** 519 527 * Return a list with available subfolders of the skin directory
Note: See TracChangeset
for help on using the changeset viewer.
