summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
Diffstat (limited to 'installer')
-rw-r--r--installer/check.php4
-rw-r--r--installer/rcube_install.php6
2 files changed, 6 insertions, 4 deletions
diff --git a/installer/check.php b/installer/check.php
index 3136563b1..52460bb0f 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -38,7 +38,9 @@ $ini_checks = array(
);
$optional_checks = array(
- 'date.timezone' => '-NOTEMPTY-',
+ // required for utils/modcss.inc, should we require this?
+ 'allow_url_fopen' => 1,
+ 'date.timezone' => '-NOTEMPTY-',
);
$source_urls = array(
diff --git a/installer/rcube_install.php b/installer/rcube_install.php
index 331e29625..bfb111f1d 100644
--- a/installer/rcube_install.php
+++ b/installer/rcube_install.php
@@ -5,7 +5,7 @@
| rcube_install.php |
| |
| This file is part of the Roundcube Webmail package |
- | Copyright (C) 2008-2011, The Roundcube Dev Team |
+ | Copyright (C) 2008-2012, The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
@@ -274,7 +274,7 @@ class rcube_install
}
else if (!empty($this->config['spellcheck_languages'])) {
foreach ($this->config['spellcheck_languages'] as $lang => $descr)
- if (!pspell_new($lang))
+ if (!@pspell_new($lang))
$out['dependencies'][] = array('prop' => 'spellcheck_languages',
'explain' => "You are missing pspell support for language $lang ($descr)");
}
@@ -453,7 +453,7 @@ class rcube_install
'0.5-beta', '0.5', '0.5.1',
'0.6-beta', '0.6',
'0.7-beta', '0.7', '0.7.1', '0.7.2',
- '0.8-beta', '0.8-rc',
+ '0.8-beta', '0.8-rc', '0.8.0',
));
return $select;
}