summaryrefslogtreecommitdiff
path: root/installer/rcube_install.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-08-05 14:01:22 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-08-05 14:01:22 +0200
commit471d5593744db7fcbee602667e9e098da8cc1791 (patch)
tree3a84d5d0f1cdb4ad01edd6989c695e31a8f2de16 /installer/rcube_install.php
parentb169de8fcde5587f49863ffe99c1f915a9e96ba8 (diff)
Update installto/update script to remove old default skins and copy all necessary files; repeat notice about missing config options after auto-update
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r--installer/rcube_install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php
index 01238596b..2fe85c5f6 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. |
@@ -263,7 +263,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)");
}