summaryrefslogtreecommitdiff
path: root/installer/rcube_install.php
diff options
context:
space:
mode:
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);
+ }
/**