summaryrefslogtreecommitdiff
path: root/installer/rcube_install.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-08-27 13:38:26 +0000
committeralecpl <alec@alec.pl>2009-08-27 13:38:26 +0000
commit11e670da55d18a999773374563390c4b378e5e41 (patch)
treec0a15ea2b3c69b943ad39ff293426d30ca6e24ca /installer/rcube_install.php
parent4f7aa85f222a49cdbf0baf1e5a9920d51f4fd3ac (diff)
- Don't require date.timezone setting in installer (#1485989)
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r--installer/rcube_install.php14
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) . ':&nbsp; <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) . ':&nbsp; <span class="na">NOT OK</span>';
+ $this->_showhint($message, $url);
+ }
/**