From: Andrew Dolgov Date: Sat, 19 Aug 2006 09:11:45 +0000 (+0100) Subject: load magpie/rss_fetch.inc in functions.php (closes #100) X-Git-Tag: schema_freeze_for_1.2.2_(take_2)~20 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ed891a51b09f74848c4b2742441a1551ae14b659;p=tt-rss.git load magpie/rss_fetch.inc in functions.php (closes #100) --- diff --git a/backend.php b/backend.php index 30e236ce..1b530ac5 100644 --- a/backend.php +++ b/backend.php @@ -24,7 +24,6 @@ require_once "db.php"; require_once "db-prefs.php"; require_once "functions.php"; - require_once "magpierss/rss_fetch.inc"; $err_msg = check_configuration_variables(); diff --git a/functions.php b/functions.php index e9863c36..2b6e53b3 100644 --- a/functions.php +++ b/functions.php @@ -13,6 +13,7 @@ require_once 'version.php'; if (RSS_BACKEND_TYPE == "magpie") { + require_once "magpierss/rss_fetch.inc"; require_once 'magpierss/rss_utils.inc'; } else if (RSS_BACKEND_TYPE == "simplepie") { require_once 'simplepie/simplepie.inc';