summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
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"));