diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-27 13:38:26 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-27 13:38:26 +0000 |
| commit | d2bb7925525d909400761554dc3b9bd1b15f312e (patch) | |
| tree | d95b763299516851b2b4d53caf3825b2a4f93f74 /roundcubemail/installer/rcube_install.php | |
| parent | 0dde2f819738fccfae31a2fc3fdfd847004b3ca8 (diff) | |
- Don't require date.timezone setting in installer (#1485989)
git-svn-id: https://svn.roundcube.net/trunk@2881 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/rcube_install.php')
| -rw-r--r-- | roundcubemail/installer/rcube_install.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roundcubemail/installer/rcube_install.php b/roundcubemail/installer/rcube_install.php index 1ad1ff267..f30c0085f 100644 --- a/roundcubemail/installer/rcube_install.php +++ b/roundcubemail/installer/rcube_install.php @@ -467,6 +467,20 @@ class rcube_install echo Q($name) . ': <span class="fail">NOT OK</span>'; $this->_showhint($message, $url); } + + + /** + * Display an error status for optional settings/features + * + * @param string Test name + * @param string Error message + * @param string URL for details + */ + function optfail($name, $message = '', $url = '') + { + echo Q($name) . ': <span class="na">NOT OK</span>'; + $this->_showhint($message, $url); + } /** |
