summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/check.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-05 14:14:40 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-05 14:14:40 +0000
commit7bf057a8d69078bdae78187e0f6e32d27b1b30df (patch)
treec9a5b2efbfabd9cb052addcb3715914926da8566 /roundcubemail/installer/check.php
parent3d1c195d417b6d0794ec581ccf76adc15ec57b19 (diff)
Remove test for sockets + check if temp and log dirs are writeable
git-svn-id: https://svn.roundcube.net/trunk@1186 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/check.php')
-rw-r--r--roundcubemail/installer/check.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/installer/check.php b/roundcubemail/installer/check.php
index 8352364f5..b795fa9bb 100644
--- a/roundcubemail/installer/check.php
+++ b/roundcubemail/installer/check.php
@@ -1,7 +1,7 @@
<form action="index.php" method="get">
<?php
-$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', 'Sockets' => 'sockets');
+$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session');
$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv',
'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', 'GD' => 'gd');
@@ -65,7 +65,7 @@ foreach ($required_php_exts AS $name => $ext) {
?>
-<p class="hint">These extensions are <em>optional</em> but recommended to get the best performance:</p>
+<p class="hint">The next couple of extensions are <em>optional</em> but recommended to get the best performance:</p>
<?php
foreach ($optional_php_exts AS $name => $ext) {