summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-10-04 06:46:05 +0100
committerAndrew Dolgov <[email protected]>2007-10-04 06:46:05 +0100
commit4148e809d30ac999ff6a77a55406e98c2184fe0a (patch)
tree85f025ae724c3c6b50065e82aebd7ce9a5a65ddf /functions.php
parent9041f58b245ccdfb10a4e180b40d2881647cb5ab (diff)
do not apply magpie timeout override on simplepie
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index e218a6c28..ea991269d 100644
--- a/functions.php
+++ b/functions.php
@@ -486,7 +486,7 @@
$rss = new SimplePie();
$rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
- $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
+// $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
$rss->set_feed_url($fetch_url);
$rss->set_output_encoding('UTF-8');
@@ -3338,7 +3338,7 @@
if (ENABLE_SIMPLEPIE) {
$rss = new SimplePie();
$rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
- $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
+// $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
$rss->set_feed_url($fetch_url);
$rss->set_output_encoding('UTF-8');
$rss->init();