diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-14 18:23:39 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-14 18:23:39 +0000 |
| commit | d904ec69c8894cbbd3ddc35849434dc177713e4c (patch) | |
| tree | 4ab85c9d6868ae0a13586390fbf7153b6650c024 | |
| parent | 3db02c6557970a1d3e5dc42b120b3dec296787f4 (diff) | |
- Update versions list (#1488255)
git-svn-id: https://svn.roundcube.net/trunk@5614 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/installer/rcube_install.php | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/roundcubemail/installer/rcube_install.php b/roundcubemail/installer/rcube_install.php index dbe662acf..737972b93 100644 --- a/roundcubemail/installer/rcube_install.php +++ b/roundcubemail/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 */ |
