Skip to content

Commit

Permalink
- Update versions list (#1488255)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Dec 14, 2011
1 parent a9ed78a commit 7177b52
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions installer/rcube_install.php
Expand Up @@ -504,17 +504,25 @@ function get_hostlist()

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
*/
Expand Down

0 comments on commit 7177b52

Please sign in to comment.