summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-25 18:46:01 +0100
committerAndrew Dolgov <[email protected]>2008-01-25 18:46:01 +0100
commit16211ddbf24c978d88d8eb434ab57d7824827dbd (patch)
tree0cd6a2ebd96be978a6d7d10e9023226d1bd6e846 /backend.php
parent0dd9c0cf0be7a896188e216c38ed67a1898218b9 (diff)
allow per-feed update method selection
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 8af861fdc..c8271f4f9 100644
--- a/backend.php
+++ b/backend.php
@@ -119,11 +119,17 @@
1440 => __("Daily"),
10080 => __("Weekly"));
- $update_method = array(
+ $update_methods = array(
0 => __("Use default"),
1 => __("Magpie"),
2 => __("SimplePie"));
-
+
+ if (ENABLE_SIMPLEPIE) {
+ $update_methods[0] .= ' (SimplePie)';
+ } else {
+ $update_methods[0] .= ' (Magpie)';
+ }
+
$access_level_names = array(
0 => __("User"),
10 => __("Administrator"));