disable error reporting on fetch_rss

This commit is contained in:
Andrew Dolgov 2005-08-23 07:46:25 +01:00
parent c3b81db06c
commit 3ad5aa855c
1 changed files with 2 additions and 0 deletions

View File

@ -29,7 +29,9 @@
function update_rss_feed($link, $feed_url, $feed) {
error_reporting(0);
$rss = fetch_rss($feed_url);
error_reporting (E_ERROR | E_WARNING | E_PARSE);
$num_unread = 0;