summaryrefslogtreecommitdiff
path: root/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-07-04 06:51:05 +0100
committerAndrew Dolgov <[email protected]>2006-07-04 06:51:05 +0100
commit7c5a308d9136a83c8d53c2b78b54c9440594b8cb (patch)
tree4eeea92d085a0da3df2b29fa54733117a04982e6 /sanity_check.php
parent3d7d6cdd5718a39b9cbfa193e344264b2992bad6 (diff)
add experimental support for simplepie rss parser
Diffstat (limited to 'sanity_check.php')
-rw-r--r--sanity_check.php21
1 files changed, 17 insertions, 4 deletions
diff --git a/sanity_check.php b/sanity_check.php
index 25f4da0b9..503e4d070 100644
--- a/sanity_check.php
+++ b/sanity_check.php
@@ -16,7 +16,7 @@
exit;
}
- if (!file_exists("magpierss/rss_fetch.inc")) {
+ if (RSS_BACKEND_TYPE == "magpie" && !file_exists("magpierss/rss_fetch.inc")) {
print "<b>Fatal Error</b>: You forgot to place
<a href=\"http://magpierss.sourceforge.net\">MagpieRSS</a>
distribution in <b>magpierss/</b>
@@ -24,9 +24,22 @@
exit;
}
- if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
- return "config: your config file version is incorrect. See config.php-dist.";
- }
+ if (RSS_BACKEND_TYPE == "simplepie" && !file_exists("simplepie/simplepie.inc")) {
+ print "<b>Fatal Error</b>: You forgot to place
+ <a href=\"http://simplepie.org\">SimplePie</a>
+ distribution in <b>simplepie/</b>
+ subdirectory of TT-RSS tree.";
+ exit;
+ }
+
+ if (RSS_BACKEND_TYPE != "simplepie" && RSS_BACKEND_TYPE != "magpie") {
+ print "<b>Fatal Error</b>: Invalid RSS_BACKEND_TYPE";
+ exit;
+ }
+
+ if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
+ return "config: your config file version is incorrect. See config.php-dist.";
+ }
if (file_exists("xml-export.php") || file_exists("xml-import.php")) {
print "<b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>