openbsd-ports/mail/roundcubemail/patches/patch-installer_rcube_install_php
sthen fe4ec7779a - fix dropdown list in install.php for updates, from upstream
- upstream has the sql fixes too; mention the commit in a comment
2011-12-14 21:56:56 +00:00

36 lines
1.0 KiB
Plaintext

$OpenBSD: patch-installer_rcube_install_php,v 1.1 2011/12/14 21:56:56 sthen Exp $
r5614: update dropdown list in installer for updates
--- installer/rcube_install.php.orig Wed Dec 14 21:48:40 2011
+++ installer/rcube_install.php Wed Dec 14 21:50:21 2011
@@ -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
*/