From: ebullient Date: Wed, 31 Mar 2004 23:11:50 +0000 (+0000) Subject: Don't gripe about not being able to read the attachment dir when we X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=5fbc3f186a583d0ed1c55d01f428caccb316420c Don't gripe about not being able to read the attachment dir when we recommend that it be not readable.. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@6993 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/configtest.php b/src/configtest.php index 2deb8390..2a50d2e6 100644 --- a/src/configtest.php +++ b/src/configtest.php @@ -117,9 +117,6 @@ if($data_dir == $attachment_dir) { if (!is_dir($attachment_dir)) { do_err("Attachment dir ($attachment_dir) is not a directory!"); } - if (!is_readable($attachment_dir)) { - do_err("I cannot read from attachment dir ($attachment_dir)!"); - } if (!is_writable($attachment_dir)) { do_err("I cannot write to attachment dir ($attachment_dir)!"); }