summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-14 08:57:39 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-14 09:06:29 +0200
commit853d0ab2a402222cc87dc83bb27c3fb2f33d84aa (patch)
tree5486068c575cb77b04cff55d45e442acb2838999
parent1f5557817f1739a26c03ec0efa76ccf5d0bff603 (diff)
Fix version selector - do not list versions newer than 0.9.0, use
"0.9 or newer" instead. Conflicts: installer/rcube_install.php
-rw-r--r--installer/rcube_install.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php
index f1fb9012a..ce9ddfc46 100644
--- a/installer/rcube_install.php
+++ b/installer/rcube_install.php
@@ -455,7 +455,8 @@ class rcube_install
'0.6-beta', '0.6',
'0.7-beta', '0.7', '0.7.1', '0.7.2', '0.7.3', '0.7.4',
'0.8-beta', '0.8-rc', '0.8.0', '0.8.1', '0.8.2', '0.8.3', '0.8.4', '0.8.5', '0.8.6',
- '0.9-beta', '0.9-rc', '0.9-rc2', '0.9.0', '0.9.1'
+ '0.9-beta', '0.9-rc', '0.9-rc2',
+ // Note: Do not add newer versions here
));
return $select;
}