From 6d479a622bfb779e07e7ac7bd12154ec951982e5 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Tue, 22 Sep 2009 03:50:32 -0400
Subject: [PATCH] - remove set_magic_quotes_runtime() call, use set_time_limit() with @ (#1486149)

---
 program/steps/mail/get.inc |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index 40ce14e..cb938c0 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -93,9 +93,7 @@
     }
     else {
       // don't kill the connection if download takes more than 30 sec.
-      if (!ini_get('safe_mode')) {
-          set_time_limit(0);
-      }
+      @set_time_limit(0);
       
       $filename = $part->filename ? $part->filename : ($MESSAGE->subject ? $MESSAGE->subject : 'roundcube') . '.'.$ctype_secondary;
       

--
Gitblit v1.9.1