From b7206e1d7e0ba170f47ef6bcfb97e75138792ddd Mon Sep 17 00:00:00 2001 From: centaurix Date: Fri, 25 Jan 2002 09:28:29 +0000 Subject: [PATCH] Non-ascii characters caused problems with SVN function and were replaced with a ? by SourceForge.net in your original log message, which follows: check for safe_mode before set_time_limit. this check was removed for reasons I don?t know, but it is mandatory becaus it breaks attachment download in installations with safe_mode. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2234 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mime.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/functions/mime.php b/functions/mime.php index 4cc1ccaa..b050533c 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -453,7 +453,11 @@ function mime_print_body_lines ($imap_stream, $id, $ent_id, $encoding) { $sid = sqimap_session_id(); // Don't kill the connection if the browser is over a dialup // and it would take over 30 seconds to download it. - set_time_limit(0); + + // don“t call set_time_limit in safe mode. + if (!ini_get("safe_mode")) { + set_time_limit(0); + } fputs ($imap_stream, "$sid FETCH $id BODY[$ent_id]\r\n"); $cnt = 0; -- 2.25.1