diff options
author | alecpl <alec@alec.pl> | 2011-12-14 18:23:39 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-14 18:23:39 +0000 |
commit | 7177b5216ab5d2e296a99c87788e37c1eb50ba60 (patch) | |
tree | 4dc05f2734b67564b751fa7cfb7fe2805884b625 /installer | |
parent | a9ed78ace19375b6f660cd7371b6b9e57164584d (diff) |
- Update versions list (#1488255)
Diffstat (limited to 'installer')
-rw-r--r-- | installer/rcube_install.php | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index dbe662acf..737972b93 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -504,17 +504,25 @@ class rcube_install return $out; } - + /** * Create a HTML dropdown to select a previous version of Roundcube */ function versions_select($attrib = array()) { $select = new html_select($attrib); - $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')); + $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', + '0.6-beta', '0.6', + '0.7-beta', '0.7', + )); return $select; } - + /** * Return a list with available subfolders of the skin directory */ |