diff options
author | alecpl <alec@alec.pl> | 2009-08-27 13:38:26 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-08-27 13:38:26 +0000 |
commit | 11e670da55d18a999773374563390c4b378e5e41 (patch) | |
tree | c0a15ea2b3c69b943ad39ff293426d30ca6e24ca /installer/rcube_install.php | |
parent | 4f7aa85f222a49cdbf0baf1e5a9920d51f4fd3ac (diff) |
- Don't require date.timezone setting in installer (#1485989)
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r-- | installer/rcube_install.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index 1ad1ff267..f30c0085f 100644 --- a/installer/rcube_install.php +++ b/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); + } /** |