diff --git a/setup/check_install.php b/setup/check_install.php
index a6d99439ee..ce33b43ecd 100644
--- a/setup/check_install.php
+++ b/setup/check_install.php
@@ -152,7 +152,7 @@
),
'Log' => array(
'func' => 'pear_check',
- 'warning' => '
' . lang('PEAR::Log is needed by SyncML.') . "
"
+ 'warning' => '' . lang('PEAR::Log is needed by SyncML.').' '.lang('You can install it by running:').' pear install Log' . "
"
),
'gd' => array(
'func' => 'gd_check',
@@ -211,7 +211,7 @@
}
if ($pear_available && $package)
{
- $available = include($package.'.php');
+ $available = @include($package.'.php');
if (!class_exists($package)) $available = false;
@@ -540,6 +540,7 @@
echo ''.lang('The first step in installing eGroupWare is to ensure your environment has the necessary settings to correctly run the application.').'
';
echo ''.lang('We will now run a series of tests, which may take a few minutes. Click the link below to proceed.').'
';
echo '';
+ echo ''.lang('Skip the installation tests (not recommended)')."
\n";
$setup_tpl->pparse('out','T_footer');
exit;
} else {