diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-06-18 14:59:20 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-06-18 14:59:20 +0200 |
commit | caa53b1316dc7a17a4439e1a1afb3c9f91182832 (patch) | |
tree | 61ed653c96826a49aeb9c2fd0a63433aa5bed9a5 /installer/rcube_install.php | |
parent | 4500b2f79bbd0985ba2e13ff870e6d474370f9ae (diff) | |
parent | e7fa2ce56d0c9e3d791f3c145febbb9ab16be838 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r-- | installer/rcube_install.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index c95d936d2..473fd2612 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -496,10 +496,13 @@ class rcube_install * @param string Test name * @param string Error message * @param string URL for details + * @param bool Do not count this failure */ - function fail($name, $message = '', $url = '') + function fail($name, $message = '', $url = '', $optional=false) { - $this->failures++; + if (!$optional) { + $this->failures++; + } echo Q($name) . ': <span class="fail">NOT OK</span>'; $this->_showhint($message, $url); |